# HG changeset patch # User Juanma Barranquero # Date 1165677625 0 # Node ID d3e5cb1aa5b6163d2d6b5d0c2538bf14cfe320f1 # Parent b97c3d2878498e46c51bb1ed395d6970cef89f67 (register-input-method): Doc fix. diff -r b97c3d287849 -r d3e5cb1aa5b6 lisp/international/mule-cmds.el --- a/lisp/international/mule-cmds.el Sat Dec 09 13:10:01 2006 +0000 +++ b/lisp/international/mule-cmds.el Sat Dec 09 15:20:25 2006 +0000 @@ -859,7 +859,7 @@ (let ((no-other-defaults nil) auto-cs) - (unless (or (stringp from) find-file-literally) + (unless (or (stringp from) find-file-literally) ;; Find an auto-coding that is specified for the the current ;; buffer and file from the region FROM and TO. (save-excursion @@ -921,7 +921,7 @@ (rassq base default-coding-system) (setq default-coding-system (append default-coding-system - (list (cons default-buffer-file-coding-system + (list (cons default-buffer-file-coding-system base))))))) ;; If the most preferred coding system has the property mime-charset, @@ -948,10 +948,10 @@ (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 + (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 + (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) @@ -1235,7 +1235,7 @@ (dolist (elt alist) (set-language-info-internal lang-env (car elt) (cdr elt))) - + (if (equal lang-env current-language-environment) (set-language-environment lang-env)))) @@ -1358,10 +1358,8 @@ (defun register-input-method (input-method lang-env &rest args) "Register INPUT-METHOD as an input method for language environment LANG-ENV. + INPUT-METHOD and LANG-ENV are symbols or strings. - -The remaining arguments are: - ACTIVATE-FUNC, TITLE, DESCRIPTION, and ARGS... ACTIVATE-FUNC is a function to call to activate this method. TITLE is a string to show in the mode line when this method is active. DESCRIPTION is a string describing this method and what it is good for. @@ -1379,7 +1377,8 @@ The commands `describe-input-method' and `list-input-methods' need these duplicated values to show some information about input methods -without loading the relevant Quail packages." +without loading the relevant Quail packages. +\n(fn INPUT-METHOD LANG-ENV ACTIVATE-FUNC TITLE DESCRIPTION &rest ARGS)" (if (symbolp lang-env) (setq lang-env (symbol-name lang-env))) (if (symbolp input-method)