aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1998-06-01 03:08:00 +0000
committerKarl Heuer1998-06-01 03:08:00 +0000
commit4527adca6840d33a9a6574fd674443f107aa21a1 (patch)
treedd336eaec09386b4e8be9cafe5276d08756c5eff /lisp
parent9e16922146d876b0244fadd48d4f982d3f95c259 (diff)
downloademacs-4527adca6840d33a9a6574fd674443f107aa21a1.tar.gz
emacs-4527adca6840d33a9a6574fd674443f107aa21a1.zip
Many doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/international/mule-diag.el64
1 files changed, 32 insertions, 32 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el
index 257a3c9faa5..2ebf0eaf7e0 100644
--- a/lisp/international/mule-diag.el
+++ b/lisp/international/mule-diag.el
@@ -46,12 +46,14 @@
46(defun list-character-sets (&optional arg) 46(defun list-character-sets (&optional arg)
47 "Display a list of all character sets. 47 "Display a list of all character sets.
48 48
49The ID column contains a charset identification number for internal use. 49The ID column contains a charset identification number for internal Emacs use.
50The B column contains a number of bytes occupied in a buffer. 50The B column contains a number of bytes occupied in a buffer
51The W column contains a number of columns occupied in a screen. 51 by any character in this character set.
52The W column contains a number of columns occupied on the screen
53 by any character in this character set.
52 54
53With prefix arg, the output format gets more cryptic 55With prefix arg, the output format gets more cryptic,
54but contains full information about each character sets." 56but still shows the full information."
55 (interactive "P") 57 (interactive "P")
56 (sort-charset-list) 58 (sort-charset-list)
57 (with-output-to-temp-buffer "*Help*" 59 (with-output-to-temp-buffer "*Help*"
@@ -148,7 +150,7 @@ but contains full information about each character sets."
148 150
149;;;###autoload 151;;;###autoload
150(defun describe-coding-system (coding-system) 152(defun describe-coding-system (coding-system)
151 "Display information of CODING-SYSTEM." 153 "Display information about CODING-SYSTEM."
152 (interactive "zDescribe coding system (default, current choices): ") 154 (interactive "zDescribe coding system (default, current choices): ")
153 (if (null coding-system) 155 (if (null coding-system)
154 (describe-current-coding-system) 156 (describe-current-coding-system)
@@ -234,21 +236,21 @@ but contains full information about each character sets."
234The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\", 236The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\",
235where mnemonics of the following coding systems come in this order 237where mnemonics of the following coding systems come in this order
236at the place of `..': 238at the place of `..':
237 buffer-file-coding-system (of the current buffer) 239 `buffer-file-coding-system` (of the current buffer)
238 eol-type of buffer-file-coding-system (of the current buffer) 240 eol-type of buffer-file-coding-system (of the current buffer)
239 (keyboard-coding-system) 241 Value returned by `keyboard-coding-system'
240 eol-type of (keyboard-coding-system) 242 eol-type of (keyboard-coding-system)
241 (terminal-coding-system) 243 Value returned by `terminal-coding-system.
242 eol-type of (terminal-coding-system) 244 eol-type of (terminal-coding-system)
243 process-coding-system for read (of the current buffer, if any) 245 `process-coding-system' for read (of the current buffer, if any)
244 eol-type of process-coding-system for read (of the current buffer, if any) 246 eol-type of process-coding-system for read (of the current buffer, if any)
245 process-coding-system for write (of the current buffer, if any) 247 `process-coding-system' for write (of the current buffer, if any)
246 eol-type of process-coding-system for write (of the current buffer, if any) 248 eol-type of process-coding-system for write (of the current buffer, if any)
247 default-buffer-file-coding-system 249 `default-buffer-file-coding-system'
248 eol-type of default-buffer-file-coding-system 250 eol-type of default-buffer-file-coding-system
249 default-process-coding-system for read 251 `default-process-coding-system' for read
250 eol-type of default-process-coding-system for read 252 eol-type of default-process-coding-system for read
251 default-process-coding-system for write 253 `default-process-coding-system' for write
252 eol-type of default-process-coding-system" 254 eol-type of default-process-coding-system"
253 (interactive) 255 (interactive)
254 (let* ((proc (get-buffer-process (current-buffer))) 256 (let* ((proc (get-buffer-process (current-buffer)))
@@ -273,7 +275,7 @@ at the place of `..':
273 (coding-system-eol-type-mnemonic (cdr default-process-coding-system)) 275 (coding-system-eol-type-mnemonic (cdr default-process-coding-system))
274 ))) 276 )))
275 277
276;; Print symbol name and mnemonic letter of CODING-SYSTEM by `princ'. 278;; Print symbol name and mnemonic letter of CODING-SYSTEM with `princ'.
277(defun print-coding-system-briefly (coding-system &optional doc-string) 279(defun print-coding-system-briefly (coding-system &optional doc-string)
278 (if (not coding-system) 280 (if (not coding-system)
279 (princ "nil\n") 281 (princ "nil\n")
@@ -293,7 +295,7 @@ at the place of `..':
293 295
294;;;###autoload 296;;;###autoload
295(defun describe-current-coding-system () 297(defun describe-current-coding-system ()
296 "Display coding systems currently used in a detailed format." 298 "Display coding systems currently used, in detail."
297 (interactive) 299 (interactive)
298 (with-output-to-temp-buffer "*Help*" 300 (with-output-to-temp-buffer "*Help*"
299 (let* ((proc (get-buffer-process (current-buffer))) 301 (let* ((proc (get-buffer-process (current-buffer)))
@@ -467,10 +469,10 @@ at the place of `..':
467;;;###autoload 469;;;###autoload
468(defun list-coding-systems (&optional arg) 470(defun list-coding-systems (&optional arg)
469 "Display a list of all coding systems. 471 "Display a list of all coding systems.
470It prints mnemonic letter, name, and description of each coding systems. 472This shows the mnemonic letter, name, and description of each coding system.
471 473
472With prefix arg, the output format gets more cryptic, 474With prefix arg, the output format gets more cryptic,
473but contains full information about each coding systems." 475but still contains full information about each coding system."
474 (interactive "P") 476 (interactive "P")
475 (with-output-to-temp-buffer "*Help*" 477 (with-output-to-temp-buffer "*Help*"
476 (if (null arg) 478 (if (null arg)
@@ -613,8 +615,7 @@ but contains full information about each coding systems."
613;;;###autoload 615;;;###autoload
614(defun describe-fontset (fontset) 616(defun describe-fontset (fontset)
615 "Display information of FONTSET. 617 "Display information of FONTSET.
616 618This shows the name, size, and style of FONTSET, and the list of fonts
617It prints name, size, and style of FONTSET, and lists up fonts
618contained in FONTSET. 619contained in FONTSET.
619 620
620The column WDxHT contains width and height (pixels) of each fontset 621The column WDxHT contains width and height (pixels) of each fontset
@@ -622,14 +623,14 @@ The column WDxHT contains width and height (pixels) of each fontset
622column means that the corresponding fontset is not yet used in any 623column means that the corresponding fontset is not yet used in any
623frame. 624frame.
624 625
625The O column of each font contains one of the following letters. 626The O column for each font contains one of the following letters:
626 o -- font already opened 627 o -- font already opened
627 - -- font not yet opened 628 - -- font not yet opened
628 x -- font can't be opened 629 x -- font can't be opened
629 ? -- no font specified 630 ? -- no font specified
630 631
631The Charset column of each font contains a name of character set 632The Charset column for each font contains a name of character set
632displayed by the font." 633displayed (for this fontset) using that font."
633 (interactive 634 (interactive
634 (if (not (and window-system (boundp 'global-fontset-alist))) 635 (if (not (and window-system (boundp 'global-fontset-alist)))
635 (error "No fontsets being used") 636 (error "No fontsets being used")
@@ -653,10 +654,9 @@ displayed by the font."
653;;;###autoload 654;;;###autoload
654(defun list-fontsets (arg) 655(defun list-fontsets (arg)
655 "Display a list of all fontsets. 656 "Display a list of all fontsets.
656 657This shows the name, size, and style of each fontset.
657It prints name, size, and style of each fontset. 658With prefix arg, it also list the fonts contained in each fontset;
658With prefix arg, it also lists up fonts contained in each fontset. 659see the function `describe-fontset' for the format of the list."
659See the function `describe-fontset' for the format of the list."
660 (interactive "P") 660 (interactive "P")
661 (if (not (and window-system (boundp 'global-fontset-alist))) 661 (if (not (and window-system (boundp 'global-fontset-alist)))
662 (error "No fontsets being used") 662 (error "No fontsets being used")
@@ -672,7 +672,7 @@ See the function `describe-fontset' for the format of the list."
672 672
673;;;###autoload 673;;;###autoload
674(defun list-input-methods () 674(defun list-input-methods ()
675 "Print information of all input methods." 675 "Display information about all input methods."
676 (interactive) 676 (interactive)
677 (with-output-to-temp-buffer "*Help*" 677 (with-output-to-temp-buffer "*Help*"
678 (if (not input-method-alist) 678 (if (not input-method-alist)
@@ -721,9 +721,9 @@ Emacs again, you should be able to use various input methods."))
721(defun mule-diag () 721(defun mule-diag ()
722 "Display diagnosis of the multilingual environment (MULE). 722 "Display diagnosis of the multilingual environment (MULE).
723 723
724It prints various information related to the current multilingual 724This shows various information related to the current multilingual
725environment, including lists of input methods, coding systems, 725environment, including lists of input methods, coding systems,
726character sets, and fontsets (if Emacs running under some window 726character sets, and fontsets (if Emacs is running under a window
727system which uses fontsets)." 727system which uses fontsets)."
728 (interactive) 728 (interactive)
729 (with-output-to-temp-buffer "*Mule-Diagnosis*" 729 (with-output-to-temp-buffer "*Mule-Diagnosis*"
@@ -792,7 +792,7 @@ system which uses fontsets)."
792 792
793;;;###autoload 793;;;###autoload
794(defun dump-charsets () 794(defun dump-charsets ()
795 "Dump information of all charsets into the file \"CHARSETS\". 795 "Dump information about all charsets into the file `CHARSETS'.
796The file is saved in the directory `data-directory'." 796The file is saved in the directory `data-directory'."
797 (let ((file (expand-file-name "CHARSETS" data-directory)) 797 (let ((file (expand-file-name "CHARSETS" data-directory))
798 buf) 798 buf)
@@ -815,7 +815,7 @@ The file is saved in the directory `data-directory'."
815 815
816;;;###autoload 816;;;###autoload
817(defun dump-codings () 817(defun dump-codings ()
818 "Dump information of all coding systems into the file \"CODINGS\". 818 "Dump information about all coding systems into the file `CODINGS'.
819The file is saved in the directory `data-directory'." 819The file is saved in the directory `data-directory'."
820 (let ((file (expand-file-name "CODINGS" data-directory)) 820 (let ((file (expand-file-name "CODINGS" data-directory))
821 buf) 821 buf)