# HG changeset patch # User Kenichi Handa # Date 1154652604 0 # Node ID cb32f6952a5b45d754897a643ccb4e4077caea75 # Parent 858cb33ae39dede2133cde696514bbc3f2a207be (select-safe-coding-system): Fix synching with head. diff -r 858cb33ae39d -r cb32f6952a5b lisp/international/mule-cmds.el --- a/lisp/international/mule-cmds.el Thu Aug 03 11:45:23 2006 +0000 +++ b/lisp/international/mule-cmds.el Fri Aug 04 00:50:04 2006 +0000 @@ -915,32 +915,50 @@ (if select-safe-coding-system-accept-default-p (setq accept-default-p select-safe-coding-system-accept-default-p)) + ;; Decide the eol-type from the top of the default codings, + ;; buffer-file-coding-system, or + ;; default-buffer-file-coding-system. + (if default-coding-system + (let ((default-eol-type (coding-system-eol-type + (caar default-coding-system)))) + (if (and (vectorp default-eol-type) buffer-file-coding-system) + (setq default-eol-type (coding-system-eol-type + buffer-file-coding-system))) + (if (and (vectorp default-eol-type) default-buffer-file-coding-system) + (setq default-eol-type (coding-system-eol-type + default-buffer-file-coding-system))) + (if (and default-eol-type (not (vectorp default-eol-type))) + (dolist (elt default-coding-system) + (setcar elt (coding-system-change-eol-conversion + (car elt) default-eol-type)))))) + (let ((codings (find-coding-systems-region from to)) (coding-system nil) safe rejected unsafe) - ;; Classify the defaults into safe, rejected, and unsafe. - (dolist (elt default-coding-system) - (if (or (eq (car codings) 'undecided) - (memq (cdr elt) codings)) - (if (and (functionp accept-default-p) - (not (funcall accept-default-p (cdr elt)))) - (push (car elt) rejected) - (push (car elt) safe)) - (push (car elt) unsafe))) - (if safe - (setq coding-system (car safe))) + (if (eq (car codings) 'undecided) + ;; Any coding system is ok. + (setq coding-system (caar default-coding-system)) + ;; Reverse the list so that elements are accumulated in safe, + ;; rejected, and unsafe in the correct order. + (setq default-coding-system (nreverse default-coding-system)) + + ;; Classify the defaults into safe, rejected, and unsafe. + (dolist (elt default-coding-system) + (if (or (eq (car codings) 'undecided) + (memq (cdr elt) codings)) + (if (and (functionp accept-default-p) + (not (funcall accept-default-p (cdr elt)))) + (push (car elt) rejected) + (push (car elt) safe)) + (push (car elt) unsafe))) + (if safe + (setq coding-system (car safe)))) ;; If all the defaults failed, ask a user. - (unless coding-system + (when (not coding-system) (setq coding-system (select-safe-coding-system-interactively from to codings unsafe rejected (car codings)))) - (if (and coding-system (vectorp (coding-system-eol-type coding-system))) - (let ((eol (coding-system-eol-type buffer-file-coding-system))) - (if (numberp eol) - (setq coding-system - (coding-system-change-eol-conversion coding-system eol))))) - ;; Check we're not inconsistent with what `coding:' spec &c would ;; give when file is re-read. ;; But don't do this if we explicitly ignored the cookie