Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fd20f015
Commit
fd20f015
authored
Aug 26, 1996
by
Richard M. Stallman
Browse files
(byte-compile-insert-header): Fix previous change.
parent
8396299d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+3
-4
No files found.
lisp/emacs-lisp/bytecomp.el
View file @
fd20f015
...
...
@@ -10,7 +10,7 @@
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
(
defconst
byte-compile-version
"$Revision: 2.1
2
$"
)
(
defconst
byte-compile-version
"$Revision: 2.1
3
$"
)
;; 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"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment