diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 09f2c804b9f..b5a3c2f46f2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-11-25 Bozhidar Batsov <bozhidar@bozhidar-home.local> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo. | ||
| 4 | |||
| 1 | 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> | 5 | 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> |
| 2 | 6 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): | 7 | * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index faa72e73959..116f356822e 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -2930,7 +2930,7 @@ for symbols generated by the byte compiler itself." | |||
| 2930 | ((symbolp (car form)) | 2930 | ((symbolp (car form)) |
| 2931 | (let* ((fn (car form)) | 2931 | (let* ((fn (car form)) |
| 2932 | (handler (get fn 'byte-compile)) | 2932 | (handler (get fn 'byte-compile)) |
| 2933 | (interactive-onaly (or (get fn 'interactive-only) | 2933 | (interactive-only (or (get fn 'interactive-only) |
| 2934 | (memq fn byte-compile-interactive-only-functions)))) | 2934 | (memq fn byte-compile-interactive-only-functions)))) |
| 2935 | (when (macroexp--const-symbol-p fn) | 2935 | (when (macroexp--const-symbol-p fn) |
| 2936 | (byte-compile-warn "`%s' called as a function" fn)) | 2936 | (byte-compile-warn "`%s' called as a function" fn)) |