(interactive-form): Fix paren typo.

This commit is contained in:
Miles Bader 2001-03-30 00:53:08 +00:00
parent 96e29ebe34
commit a27b451eb7
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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)