]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-file): Fix comment
authorKenichi Handa <handa@m17n.org>
Tue, 6 May 2003 05:10:59 +0000 (05:10 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 6 May 2003 05:10:59 +0000 (05:10 +0000)
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index 43e12411d979131f33807671ab3eac14f9b153db..9b9e5645dee4c0b11c82ed23bce231140e88ef55 100644 (file)
@@ -1,3 +1,9 @@
+2003-05-06  Kenichi Handa  <handa@etlken2>
+
+       * arc-mode.el (archive-set-buffer-as-visiting-file): Use
+       after-insert-file-set-coding, not
+       after-insert-file-set-buffer-file-coding-system.
+
 2003-05-05  Stefan Monnier  <monnier@cs.yale.edu>
 
        * uniquify.el (uniquify-buffer-name-style)
index 6092bea6da05c9677b747ed36150cf5a1651507d..aee0ff7b412a97439c2c5b4d4332da877a7e67fa 100644 (file)
@@ -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...,