aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDave Love2001-03-01 18:00:34 +0000
committerDave Love2001-03-01 18:00:34 +0000
commitc654de1d4b20b4ff93c99e5ab106862f6da1ee1f (patch)
treea406a3711af737a78fbeb289c55c419ed5784bcf /lisp
parent15d1caef82c8053dcbd8077baa5eeb2b3f61da02 (diff)
downloademacs-c654de1d4b20b4ff93c99e5ab106862f6da1ee1f.tar.gz
emacs-c654de1d4b20b4ff93c99e5ab106862f6da1ee1f.zip
Doc fixes.
(leim-list-header): Fix header text.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/international/mule-cmds.el21
1 files changed, 11 insertions, 10 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index d7d5408c9ba..ba8ecca8af0 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -327,7 +327,7 @@ This also sets the following coding systems:
327 o coding system of a newly created buffer 327 o coding system of a newly created buffer
328 o default coding system for subprocess I/O 328 o default coding system for subprocess I/O
329This also sets the following values: 329This also sets the following values:
330 o default value used as file-name-coding-system for converting file names. 330 o default value used as `file-name-coding-system' for converting file names.
331 o default value for the command `set-terminal-coding-system' (not on MSDOS) 331 o default value for the command `set-terminal-coding-system' (not on MSDOS)
332 o default value for the command `set-keyboard-coding-system' 332 o default value for the command `set-keyboard-coding-system'
333 333
@@ -339,8 +339,10 @@ for MS-DOS terminal, because DOS terminals only support a single coding
339system, and Emacs automatically sets the default to that coding system at 339system, and Emacs automatically sets the default to that coding system at
340startup. 340startup.
341 341
342Such a coding system that requires automatic detection of text 342A coding system that requires automatic detection of text
343encoding (e.g. undecided, unix) can't be preferred." 343encoding (e.g. undecided, unix) can't be preferred.
344
345See also `coding-category-list' and `coding-system-category'."
344 (interactive "zPrefer coding system: ") 346 (interactive "zPrefer coding system: ")
345 (if (not (and coding-system (coding-system-p coding-system))) 347 (if (not (and coding-system (coding-system-p coding-system)))
346 (error "Invalid coding system `%s'" coding-system)) 348 (error "Invalid coding system `%s'" coding-system))
@@ -895,15 +897,15 @@ Emacs loads this file at startup time.")
895";;; %s -- list of LEIM (Library of Emacs Input Method) 897";;; %s -- list of LEIM (Library of Emacs Input Method)
896;; 898;;
897;; This file contains a list of LEIM (Library of Emacs Input Method) 899;; This file contains a list of LEIM (Library of Emacs Input Method)
898;; in the same directory as this file. Loading this file registers 900;; methods in the same directory as this file. Loading this file
899;; the whole input methods in Emacs. 901;; registers all the input methods in Emacs.
900;; 902;;
901;; Each entry has the form: 903;; Each entry has the form:
902;; (register-input-method 904;; (register-input-method
903;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC 905;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC
904;; TITLE DESCRIPTION 906;; TITLE DESCRIPTION
905;; ARG ...) 907;; ARG ...)
906;; See the function `register-input-method' for the meanings of arguments. 908;; See the function `register-input-method' for the meanings of the arguments.
907;; 909;;
908;; If this directory is included in load-path, Emacs automatically 910;; If this directory is included in load-path, Emacs automatically
909;; loads this file at startup time. 911;; loads this file at startup time.
@@ -988,8 +990,8 @@ DESCRIPTION is a string describing this method and what it is good for.
988The ARGS, if any, are passed as arguments to ACTIVATE-FUNC. 990The ARGS, if any, are passed as arguments to ACTIVATE-FUNC.
989All told, the arguments to ACTIVATE-FUNC are INPUT-METHOD and the ARGS. 991All told, the arguments to ACTIVATE-FUNC are INPUT-METHOD and the ARGS.
990 992
991This function is mainly used in the file \"leim-list.el\", which is 993This function is mainly used in the file \"leim-list.el\" which is
992created at Emacs build time to register all Quail input methods 994created at Emacs build time, registering all Quail input methods
993contained in the Emacs distribution. 995contained in the Emacs distribution.
994 996
995In case you want to register a new Quail input method by yourself, be 997In case you want to register a new Quail input method by yourself, be
@@ -1331,8 +1333,7 @@ The default status is as follows:
1331 coding-category-binary no-conversion 1333 coding-category-binary no-conversion
1332 coding-category-utf-16-be nil 1334 coding-category-utf-16-be nil
1333 coding-category-utf-16-le nil 1335 coding-category-utf-16-le nil
1334 coding-category-utf-8 'mule-utf-8 1336 coding-category-utf-8 mule-utf-8"
1335"
1336 (interactive) 1337 (interactive)
1337 ;; This function formerly set default-enable-multibyte-characters to t, 1338 ;; This function formerly set default-enable-multibyte-characters to t,
1338 ;; but that is incorrect. It should not alter the unibyte/multibyte choice. 1339 ;; but that is incorrect. It should not alter the unibyte/multibyte choice.