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 /lisp/emacs-lisp | |
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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |