]> git.eshelyaron.com Git - emacs.git/commitdiff
(set-buffer-file-coding-system): Undo prv chg.
authorRichard M. Stallman <rms@gnu.org>
Fri, 15 Nov 2002 02:45:27 +0000 (02:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 15 Nov 2002 02:45:27 +0000 (02:45 +0000)
lisp/ChangeLog
lisp/international/mule.el

index 175b7101e323d665543aca3862c8a9c9b5162c86..dfe97b3b1a6e79183056ddaa3ec972fe19c2b711 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-14  Richard M. Stallman  <rms@gnu.org>
+
+       * international/mule.el (set-buffer-file-coding-system): Undo prv chg.
+
 2002-11-14   Markus Rost  <rost@math.ohio-state.edu>
 
        * custom.el (custom-declare-group): Remove unnecessary line of
index e425d8b8bfd7f489d7c20dcac6d9e85549ee11e4..ae78b4404678c4d05e87c479453ab904f5986fbf 100644 (file)
@@ -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))