emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bug#47391: 27.2; static list return from function and nconc


From: Gregory Heytings
Subject: Re: bug#47391: 27.2; static list return from function and nconc
Date: Thu, 25 Mar 2021 15:55:37 +0000



(defun fn () '(1 2))

(nconc (fn) '(3))
-> (1 2 3)

(nconc (fn) '(3))
-> (1 2 3 3) ? should be (1 2 3)


Why do you think this is a bug? The docstring of "nconc" says: "Concatenate any number of lists by _altering_ them. Only the last argument is not altered, and need not be a list." (append (fn) '(3)) always returns (1 2 3).


If this is not a bug, then hfy-invisible, hfy-face-to-style-i may need to be fixed.


Does the attached patch fix the bug you see?

Attachment: 0001-lisp-htmlfontify.el-hfy-invisible-Return-a-new-list-.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]