From 844da0ff4c55692b61bedebd5822c8f6745b2f38 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 6 May 2003 05:10:59 +0000 Subject: [PATCH] (byte-compile-file): Fix comment --- lisp/ChangeLog | 6 ++++++ lisp/emacs-lisp/bytecomp.el | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 43e12411d97..9b9e5645dee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2003-05-06 Kenichi Handa + + * 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 * uniquify.el (uniquify-buffer-name-style) 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..., -- 2.39.2