aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-13 04:48:48 +0000
committerRichard M. Stallman1998-05-13 04:48:48 +0000
commitd57d06cb6ef47fb0b69b0aa3c42967a43266c0c1 (patch)
tree713ae298f2b7a15481804a0e088ec19bd7a21c52
parent2157be68a72da843901b0cc9ebf3aa40eb7debe7 (diff)
downloademacs-d57d06cb6ef47fb0b69b0aa3c42967a43266c0c1.tar.gz
emacs-d57d06cb6ef47fb0b69b0aa3c42967a43266c0c1.zip
(byte-compile-insert-header): Fix prev chg.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 437c0493063..74721f40388 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -9,7 +9,7 @@
9 9
10;;; This version incorporates changes up to version 2.10 of the 10;;; This version incorporates changes up to version 2.10 of the
11;;; Zawinski-Furuseth compiler. 11;;; Zawinski-Furuseth compiler.
12(defconst byte-compile-version "$Revision: 2.42 $") 12(defconst byte-compile-version "$Revision: 2.43 $")
13 13
14;; This file is part of GNU Emacs. 14;; This file is part of GNU Emacs.
15 15
@@ -1450,7 +1450,7 @@ With argument, insert value in current buffer after the form."
1450 (goto-char 1) 1450 (goto-char 1)
1451 ;; See if the buffer has any multibyte characters. 1451 ;; See if the buffer has any multibyte characters.
1452 (skip-chars-forward "\0-\377") 1452 (skip-chars-forward "\0-\377")
1453 (setq some-multibyte-characters (not (eobp)))))) 1453 (not (eobp)))))
1454 1454
1455 (set-buffer outbuffer) 1455 (set-buffer outbuffer)
1456 (goto-char 1) 1456 (goto-char 1)