diff options
| author | Miles Bader | 2001-03-30 00:53:08 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-03-30 00:53:08 +0000 |
| commit | a27b451eb729c01a87d6583a1c80fbe4510e43d4 (patch) | |
| tree | fcfc03b5cb7b469484147bad6ce8759cd005f8df | |
| parent | 96e29ebe342e404efe7e2d4516eb40b375e205b0 (diff) | |
| download | emacs-a27b451eb729c01a87d6583a1c80fbe4510e43d4.tar.gz emacs-a27b451eb729c01a87d6583a1c80fbe4510e43d4.zip | |
(interactive-form): Fix paren typo.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 061aa93cbd5..d1d1a8b1a0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-03-30 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (interactive-form): Fix paren typo. | ||
| 4 | |||
| 1 | 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il> | 5 | 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 6 | ||
| 3 | * emacs-lisp/profile.el: Say that it's obsolete in the header | 7 | * emacs-lisp/profile.el: Say that it's obsolete in the header |
diff --git a/lisp/subr.el b/lisp/subr.el index 67f9b83887d..ffb6f7f0ca6 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1468,7 +1468,7 @@ If function is a command (see `commandp'), value is a list of the form | |||
| 1468 | (when (stringp (car function)) | 1468 | (when (stringp (car function)) |
| 1469 | (setq function (cdr function))) | 1469 | (setq function (cdr function))) |
| 1470 | (let ((form (car function))) | 1470 | (let ((form (car function))) |
| 1471 | (when (eq (car-safe form 'interactive)) | 1471 | (when (eq (car-safe form) 'interactive) |
| 1472 | (copy-sequence form))))))) | 1472 | (copy-sequence form))))))) |
| 1473 | 1473 | ||
| 1474 | (defun assq-delete-all (key alist) | 1474 | (defun assq-delete-all (key alist) |