diff options
author | Kenichi Handa <handa@m17n.org> | 2003-05-06 05:10:59 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-05-06 05:10:59 +0000 |
commit | 844da0ff4c55692b61bedebd5822c8f6745b2f38 (patch) | |
tree | 9d9140c43cf065eed33fc3c727194964ce39d71e /lisp/emacs-lisp/bytecomp.el | |
parent | e9cc41c8988b4d84a278e3d9e8f215332092171e (diff) | |
download | emacs-844da0ff4c55692b61bedebd5822c8f6745b2f38.tar.gz emacs-844da0ff4c55692b61bedebd5822c8f6745b2f38.tar.bz2 emacs-844da0ff4c55692b61bedebd5822c8f6745b2f38.zip |
(byte-compile-file): Fix comment
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 6092bea6da0..aee0ff7b412 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1553,8 +1553,8 @@ The value is non-nil if there were no errors, nil if errors." ;; unless the file itself forces unibyte with -*-coding: raw-text;-*- (set-buffer-multibyte t) (insert-file-contents filename) - ;; Mimic the way after-insert-file-set-buffer-file-coding-system - ;; can make the buffer unibyte when visiting this file. + ;; Mimic the way after-insert-file-set-coding can make the + ;; buffer unibyte when visiting this file. (when (or (eq last-coding-system-used 'no-conversion) (eq (coding-system-type last-coding-system-used) 5)) ;; For coding systems no-conversion and raw-text..., |