From: Richard M. Stallman Date: Fri, 15 Nov 2002 02:45:27 +0000 (+0000) Subject: (set-buffer-file-coding-system): Undo prv chg. X-Git-Tag: ttn-vms-21-2-B4~12438 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c8440fd6eb2c88176d97110606fb52f4438f68a;p=emacs.git (set-buffer-file-coding-system): Undo prv chg. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 175b7101e32..dfe97b3b1a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2002-11-14 Richard M. Stallman + + * international/mule.el (set-buffer-file-coding-system): Undo prv chg. + 2002-11-14 Markus Rost * custom.el (custom-declare-group): Remove unnecessary line of diff --git a/lisp/international/mule.el b/lisp/international/mule.el index e425d8b8bfd..ae78b440467 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -1179,10 +1179,11 @@ don't want to mark the buffer modified, just set the variable (setq coding-system (merge-coding-systems coding-system buffer-file-coding-system))) (setq buffer-file-coding-system coding-system) - ;; This is in case of an explicit call. Normally, `normal-mode' and - ;; `set-buffer-major-mode-hook' take care of setting the table. - (if (fboundp 'ucs-set-table-for-input) ; don't lose when building - (ucs-set-table-for-input)) +;;; This causes problems in bootstrapping. +;;; ;; This is in case of an explicit call. Normally, `normal-mode' and +;;; ;; `set-buffer-major-mode-hook' take care of setting the table. +;;; (if (fboundp 'ucs-set-table-for-input) ; don't lose when building +;;; (ucs-set-table-for-input)) (set-buffer-modified-p t) (force-mode-line-update))