comparison lisp/emacs-lisp/bytecomp.el @ 108666:6fcf1baf9c2a

* emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): Add delete-backward-char.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 24 May 2010 17:01:10 -0400
parents 1d1d5d9bd884
children f3d817d46523 149090e9b891
comparison
equal deleted inserted replaced
108665:45004fc2d3e8 108666:6fcf1baf9c2a
351 (append byte-compile-warnings (list warning))))))) 351 (append byte-compile-warnings (list warning)))))))
352 352
353 (defvar byte-compile-interactive-only-functions 353 (defvar byte-compile-interactive-only-functions
354 '(beginning-of-buffer end-of-buffer replace-string replace-regexp 354 '(beginning-of-buffer end-of-buffer replace-string replace-regexp
355 insert-file insert-buffer insert-file-literally previous-line next-line 355 insert-file insert-buffer insert-file-literally previous-line next-line
356 goto-line comint-run) 356 goto-line comint-run delete-backward-char)
357 "List of commands that are not meant to be called from Lisp.") 357 "List of commands that are not meant to be called from Lisp.")
358 358
359 (defvar byte-compile-not-obsolete-vars nil 359 (defvar byte-compile-not-obsolete-vars nil
360 "If non-nil, a list of variables that shouldn't be reported as obsolete.") 360 "If non-nil, a list of variables that shouldn't be reported as obsolete.")
361 361