mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(interactive-form): Fix paren typo.
This commit is contained in:
parent
96e29ebe34
commit
a27b451eb7
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2001-03-30 Miles Bader <miles@gnu.org>
|
||||
|
||||
* subr.el (interactive-form): Fix paren typo.
|
||||
|
||||
2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* emacs-lisp/profile.el: Say that it's obsolete in the header
|
||||
|
|
|
|||
|
|
@ -1468,7 +1468,7 @@ If function is a command (see `commandp'), value is a list of the form
|
|||
(when (stringp (car function))
|
||||
(setq function (cdr function)))
|
||||
(let ((form (car function)))
|
||||
(when (eq (car-safe form 'interactive))
|
||||
(when (eq (car-safe form) 'interactive)
|
||||
(copy-sequence form)))))))
|
||||
|
||||
(defun assq-delete-all (key alist)
|
||||
|
|
|
|||
Loading…
Reference in a new issue