]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-insert-header): Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Mon, 26 Aug 1996 14:46:44 +0000 (14:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 26 Aug 1996 14:46:44 +0000 (14:46 +0000)
lisp/emacs-lisp/bytecomp.el

index 5784f21be8d79e0445870da37a8b6c9eee17bed4..30e92ca89822e6c91b969a4932de2411b88860ac 100644 (file)
@@ -10,7 +10,7 @@
 
 ;;; This version incorporates changes up to version 2.10 of the 
 ;;; Zawinski-Furuseth compiler.
-(defconst byte-compile-version "$Revision: 2.12 $")
+(defconst byte-compile-version "$Revision: 2.13 $")
 
 ;; This file is part of GNU Emacs.
 
@@ -1417,9 +1417,8 @@ With argument, insert value in current buffer after the form."
            (current-time-string) "\n;;; from file " filename "\n")
     (insert ";;; in Emacs version " emacs-version "\n")
     (insert ";;; with bytecomp version "
-           (progn (string-match "\\$Revision: \\(.*\\) \\$"
-                                byte-compile-version)
-                  (replace-match "\\1" nil nil byte-compile-version))
+           (progn (string-match "[0-9.]+" byte-compile-version)
+                  (match-string 0 byte-compile-version))
            "\n;;; "
            (cond
             ((eq byte-optimize 'source) "with source-level optimization only")