diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-07 14:34:29 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-07 14:44:34 +0100 |
commit | c94b81bfc1877e4e7057c66cb73bd0942e9fd218 (patch) | |
tree | 6daede7231084546549b88811137c12f71b5b43e /lisp/emacs-lisp | |
parent | db56e32d1241a6573cb7b688362669abec28e648 (diff) | |
download | emacs-c94b81bfc1877e4e7057c66cb73bd0942e9fd218.tar.gz emacs-c94b81bfc1877e4e7057c66cb73bd0942e9fd218.tar.bz2 emacs-c94b81bfc1877e4e7057c66cb73bd0942e9fd218.zip |
Remove some unnecessary references to Emacs 22
* lisp/cedet/semantic/fw.el:
* lisp/emacs-lisp/bytecomp.el (byte-compile-from-buffer):
* lisp/emulation/viper-util.el (viper-frame-value):
* lisp/mail/rmail.el (rmail-delete-headers):
* lisp/mh-e/mh-e.el (mh-inc-spool-list): Remove some unnecessary
references to Emacs 22.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index b1afa6fe611..644d9f1a470 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2230,8 +2230,7 @@ With argument ARG, insert value in current buffer after the form." (byte-compile-depth 0) (byte-compile-maxdepth 0) (byte-compile-output nil) - ;; This allows us to get the positions of symbols read; it's - ;; new in Emacs 22.1. + ;; This allows us to get the positions of symbols read. (read-with-symbol-positions inbuffer) (read-symbol-positions-list nil) ;; #### This is bound in b-c-close-variables. |