diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-08-21 15:53:39 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-08-21 15:53:39 +0000 |
commit | 7a252d11f301cb52381b1ed918b820ff631b7b69 (patch) | |
tree | 8e3133dbad01d0963ae388483331cf91776ef1c9 | |
parent | 80d7d79f558592392134ea1c1794b701f6e1e13a (diff) | |
download | emacs-7a252d11f301cb52381b1ed918b820ff631b7b69.tar.gz emacs-7a252d11f301cb52381b1ed918b820ff631b7b69.tar.bz2 emacs-7a252d11f301cb52381b1ed918b820ff631b7b69.zip |
(byte-compile-interactive-only-functions): Add previous-line and next-line.
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7f9f47a1051..481902de502 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2007-08-21 Stefan Monnier <monnier@iro.umontreal.ca> + * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): + Add previous-line and next-line. + * vc-arch.el (vc-arch-extra-menu-map): New var and fun. (vc-arch-find-file-not-found-hook): Remove, it's now the default. diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 286725f99c1..45c8422e64f 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -385,7 +385,7 @@ Elements of the list may be: (defvar byte-compile-interactive-only-functions '(beginning-of-buffer end-of-buffer replace-string replace-regexp - insert-file insert-buffer insert-file-literally) + insert-file insert-buffer insert-file-literally previous-line next-line) "List of commands that are not meant to be called from Lisp.") (defvar byte-compile-not-obsolete-var nil |