1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(select-safe-coding-system): Fix

previous change.
This commit is contained in:
Kenichi Handa 2005-04-26 05:51:19 +00:00
parent 38f60cd97f
commit bc10bcbd5d
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-04-26 Kenichi Handa <handa@m17n.org>
* international/mule-cmds.el (select-safe-coding-system): Fix
previous change.
2005-04-26 Lute Kamstra <lute@gnu.org>
* calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.

View file

@ -929,7 +929,8 @@ and TO is ignored."
;; by using `find-file-literally'.
(unless (or (stringp from)
find-file-literally
(memq (coding-system-type coding-system) '(0 5)))
(and coding-system
(memq (coding-system-type coding-system) '(0 5))))
(let ((auto-cs (save-excursion
(save-restriction
(widen)