mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-02 11:21:42 +00:00
* lisp/help.el (describe-key): Only (copy-sequence elt) when elt is a list.
This commit is contained in:
parent
e879a5444a
commit
b240c7846b
@ -876,7 +876,7 @@ temporarily enables it to allow getting help on disabled items and buttons."
|
||||
(when (vectorp key)
|
||||
(let* ((last (1- (length key)))
|
||||
(elt (aref key last))
|
||||
(elt-1 (copy-sequence elt))
|
||||
(elt-1 (if (listp elt) (copy-sequence elt) elt))
|
||||
key-1 down-event-type)
|
||||
(when (and (listp elt-1)
|
||||
(symbolp (car elt-1))
|
||||
|
Loading…
Reference in New Issue
Block a user