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
b8575ac3
Commit
b8575ac3
authored
Feb 20, 1997
by
Karl Heuer
Browse files
(byte-compile-file): Write a compiled file without
any code conversion.
parent
a8f15301
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+3
-2
No files found.
lisp/emacs-lisp/bytecomp.el
View file @
b8575ac3
...
...
@@ -10,7 +10,7 @@
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
(
defconst
byte-compile-version
"$Revision: 2.2
4
$"
)
(
defconst
byte-compile-version
"$Revision: 2.2
5
$"
)
;; This file is part of GNU Emacs.
...
...
@@ -1268,7 +1268,8 @@ With prefix arg (noninteractively: 2nd arg), load the file after compiling."
(
insert
"\n"
)
; aaah, unix.
(
let
((
vms-stmlf-recfm
t
))
(
if
(
file-writable-p
target-file
)
(
let
((
kanji-flag
nil
))
; for nemacs, from Nakagawa Takayuki
;; We must disable any code conversion here.
(
let
((
coding-system-for-read
'no-conversion
))
(
if
(
or
(
eq
system-type
'ms-dos
)
(
eq
system-type
'windows-nt
))
(
setq
buffer-file-type
t
))
(
write-region
1
(
point-max
)
target-file
))
...
...
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