diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2e661e20e7e..0ae8c7cfdd7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): | ||
| 4 | Add goto-line. | ||
| 5 | |||
| 1 | 2009-08-10 Miles Bader <miles@gnu.org> | 6 | 2009-08-10 Miles Bader <miles@gnu.org> |
| 2 | 7 | ||
| 3 | * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag) | 8 | * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag) |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 196b1af0e3a..4ab701bf55c 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -425,7 +425,8 @@ else the global value will be modified." | |||
| 425 | 425 | ||
| 426 | (defvar byte-compile-interactive-only-functions | 426 | (defvar byte-compile-interactive-only-functions |
| 427 | '(beginning-of-buffer end-of-buffer replace-string replace-regexp | 427 | '(beginning-of-buffer end-of-buffer replace-string replace-regexp |
| 428 | insert-file insert-buffer insert-file-literally previous-line next-line) | 428 | insert-file insert-buffer insert-file-literally previous-line next-line |
| 429 | goto-line) | ||
| 429 | "List of commands that are not meant to be called from Lisp.") | 430 | "List of commands that are not meant to be called from Lisp.") |
| 430 | 431 | ||
| 431 | (defvar byte-compile-not-obsolete-var nil | 432 | (defvar byte-compile-not-obsolete-var nil |