aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1996-12-11 01:29:00 +0000
committerKarl Heuer1996-12-11 01:29:00 +0000
commit7bb250daccf05f8f4ba387e89dc10a0da4d7c2ed (patch)
treed62d727cb9400832859b14ca9bac583effe4e970 /lisp
parent319c537c12532c39e68a777501f723d6c4b20399 (diff)
downloademacs-7bb250daccf05f8f4ba387e89dc10a0da4d7c2ed.tar.gz
emacs-7bb250daccf05f8f4ba387e89dc10a0da4d7c2ed.zip
(byte-compile-insert-header): Fix previous change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index db47ef974ad..a4310dc2cbd 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -10,7 +10,7 @@
10 10
11;;; This version incorporates changes up to version 2.10 of the 11;;; This version incorporates changes up to version 2.10 of the
12;;; Zawinski-Furuseth compiler. 12;;; Zawinski-Furuseth compiler.
13(defconst byte-compile-version "$Revision: 2.22 $") 13(defconst byte-compile-version "$Revision: 2.23 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -1436,10 +1436,10 @@ With argument, insert value in current buffer after the form."
1436 ;; Have to check if emacs-version is bound so that this works 1436 ;; Have to check if emacs-version is bound so that this works
1437 ;; in files loaded early in loadup.el. 1437 ;; in files loaded early in loadup.el.
1438 "\n(if (and (boundp 'emacs-version)\n" 1438 "\n(if (and (boundp 'emacs-version)\n"
1439 "\t (or (and (boundp 'epoch::version) epoch::version)\n"
1440 ;; If there is a name at the end of emacs-version, 1439 ;; If there is a name at the end of emacs-version,
1441 ;; don't try to check the version number. 1440 ;; don't try to check the version number.
1442 "\t (< (aref emacs-version (1- (length emacs-version))) ?A)" 1441 "\t (< (aref emacs-version (1- (length emacs-version))) ?A)\n"
1442 "\t (or (and (boundp 'epoch::version) epoch::version)\n"
1443 (if dynamic-docstrings 1443 (if dynamic-docstrings
1444 "\t (string-lessp emacs-version \"19.29\")))\n" 1444 "\t (string-lessp emacs-version \"19.29\")))\n"
1445 "\t (string-lessp emacs-version \"19\")))\n") 1445 "\t (string-lessp emacs-version \"19\")))\n")