diff options
| author | Bozhidar Batsov | 2013-11-25 20:45:34 +0200 |
|---|---|---|
| committer | Bozhidar Batsov | 2013-11-25 20:45:34 +0200 |
| commit | d694737ae44dce74d367782865ee41d115c22bbd (patch) | |
| tree | b152f84db0474ff15af747cbf33a728c634350e7 | |
| parent | 4aaf6b615b41478b085c03f33831e0d72d0571e8 (diff) | |
| download | emacs-d694737ae44dce74d367782865ee41d115c22bbd.tar.gz emacs-d694737ae44dce74d367782865ee41d115c22bbd.zip | |
* lisp/emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
| -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)) |