# HG changeset patch # User Richard M. Stallman # Date 841070804 0 # Node ID 811f16bdff084af35f5717557163ab503f9d742c # Parent 955269257adf630508b015a715b64b3e91cfdc6c (byte-compile-insert-header): Fix previous change. diff -r 955269257adf -r 811f16bdff08 lisp/emacs-lisp/bytecomp.el --- a/lisp/emacs-lisp/bytecomp.el Mon Aug 26 00:08:21 1996 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Mon Aug 26 14:46:44 1996 +0000 @@ -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 @@ (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")