1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00: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)