mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(byte-compile-interactive-only-functions): Add goto-line.
This commit is contained in:
parent
83326559df
commit
dfd4e69361
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
|
||||
Add goto-line.
|
||||
|
||||
2009-08-10 Miles Bader <miles@gnu.org>
|
||||
|
||||
* progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
|
||||
|
|
|
|||
|
|
@ -425,7 +425,8 @@ else the global value will be modified."
|
|||
|
||||
(defvar byte-compile-interactive-only-functions
|
||||
'(beginning-of-buffer end-of-buffer replace-string replace-regexp
|
||||
insert-file insert-buffer insert-file-literally previous-line next-line)
|
||||
insert-file insert-buffer insert-file-literally previous-line next-line
|
||||
goto-line)
|
||||
"List of commands that are not meant to be called from Lisp.")
|
||||
|
||||
(defvar byte-compile-not-obsolete-var nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue