]> code.delx.au - gnu-emacs/blobdiff - lisp/international/mule-diag.el
(byte-compile-inline-expand):
[gnu-emacs] / lisp / international / mule-diag.el
index 180564c7c98af67aea03bb493f0db18cfbe2c2be..a32d892b03c6e057a6fe5c0f5f64b6e7eb8fa948 100644 (file)
 (defun list-character-sets (&optional arg)
   "Display a list of all character sets.
 
-The ID column contains a charset identification number for internal use.
-The B column contains a number of bytes occupied in a buffer.
-The W column contains a number of columns occupied in a screen.
+The ID column contains a charset identification number for internal Emacs use.
+The B column contains a number of bytes occupied in a buffer
+  by any character in this character set.
+The W column contains a number of columns occupied on the screen
+  by any character in this character set.
 
-With prefix arg, the output format gets more cryptic
-but contains full information about each character sets."
+With prefix arg, the output format gets more cryptic,
+but still shows the full information."
   (interactive "P")
   (sort-charset-list)
   (with-output-to-temp-buffer "*Help*"
     (save-excursion
       (set-buffer standard-output)
-      (let ((l charset-list)
-           charset)
-       (if (null arg)
-           (progn
-             (insert "ID  Name             B W Description\n")
-             (insert "--  ----             - - -----------\n")
-             (while l
-               (setq charset (car l) l (cdr l))
-               (insert (format "%03d %s" (charset-id charset) charset))
-               (indent-to 28)
-               (insert (format "%d %d %s\n"
-                               (charset-bytes charset)
-                               (charset-width charset)
-                               (charset-description charset)))))
-         (insert "\
+      (list-character-sets-1 arg)
+      (help-mode)
+      (setq truncate-lines t))))
+
+(defun list-character-sets-1 (arg)
+  (let ((l charset-list)
+       charset)
+    (if (null arg)
+       (progn
+         (insert "ID  Name                 B W Description\n")
+         (insert "--  ----                 - - -----------\n")
+         (while l
+           (setq charset (car l) l (cdr l))
+           (insert (format "%03d %s" (charset-id charset) charset))
+           (indent-to 28)
+           (insert (format "%d %d %s\n"
+                           (charset-bytes charset)
+                           (charset-width charset)
+                           (charset-description charset)))))
+      (insert "\
 #########################
 ## LIST OF CHARSETS
 ## Each line corresponds to one charset.
@@ -88,21 +95,19 @@ but contains full information about each character sets."
 ##     ISO-GRAPHIC-PLANE (ISO-2022's graphic plane, 0:GL, 1:GR)
 ##     DESCRIPTION (describing string of the charset)
 ")
-         (while l
-           (setq charset (car l) l (cdr l))
-           (princ (format "%03d:%s:%d:%d:%d:%d:%d:%d:%d:%s\n" 
-                          (charset-id charset)
-                          charset
-                          (charset-dimension charset)
-                          (charset-chars charset)
-                          (charset-bytes charset)
-                          (charset-width charset)
-                          (charset-direction charset)
-                          (charset-iso-final-char charset)
-                          (charset-iso-graphic-plane charset)
-                          (charset-description charset))))))
-      (help-mode)
-      (setq truncate-lines t))))
+      (while l
+       (setq charset (car l) l (cdr l))
+       (princ (format "%03d:%s:%d:%d:%d:%d:%d:%d:%d:%s\n" 
+                      (charset-id charset)
+                      charset
+                      (charset-dimension charset)
+                      (charset-chars charset)
+                      (charset-bytes charset)
+                      (charset-width charset)
+                      (charset-direction charset)
+                      (charset-iso-final-char charset)
+                      (charset-iso-graphic-plane charset)
+                      (charset-description charset)))))))
 \f
 ;;; CODING-SYSTEM
 
@@ -148,7 +153,7 @@ but contains full information about each character sets."
 
 ;;;###autoload
 (defun describe-coding-system (coding-system)
-  "Display information of CODING-SYSTEM."
+  "Display information about CODING-SYSTEM."
   (interactive "zDescribe coding system (default, current choices): ")
   (if (null coding-system)
       (describe-current-coding-system)
@@ -234,21 +239,21 @@ but contains full information about each character sets."
 The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\",
 where mnemonics of the following coding systems come in this order
 at the place of `..':
-  buffer-file-coding-system (of the current buffer)
+  `buffer-file-coding-system` (of the current buffer)
   eol-type of buffer-file-coding-system (of the current buffer)
-  (keyboard-coding-system)
+  Value returned by `keyboard-coding-system'
   eol-type of (keyboard-coding-system)
-  (terminal-coding-system)
+  Value returned by `terminal-coding-system.
   eol-type of (terminal-coding-system)
-  process-coding-system for read (of the current buffer, if any)
+  `process-coding-system' for read (of the current buffer, if any)
   eol-type of process-coding-system for read (of the current buffer, if any)
-  process-coding-system for write (of the current buffer, if any)
+  `process-coding-system' for write (of the current buffer, if any)
   eol-type of process-coding-system for write (of the current buffer, if any)
-  default-buffer-file-coding-system
+  `default-buffer-file-coding-system'
   eol-type of default-buffer-file-coding-system
-  default-process-coding-system for read
+  `default-process-coding-system' for read
   eol-type of default-process-coding-system for read
-  default-process-coding-system for write
+  `default-process-coding-system' for write
   eol-type of default-process-coding-system"
   (interactive)
   (let* ((proc (get-buffer-process (current-buffer)))
@@ -273,7 +278,7 @@ at the place of `..':
      (coding-system-eol-type-mnemonic (cdr default-process-coding-system))
      )))
 
-;; Print symbol name and mnemonic letter of CODING-SYSTEM by `princ'.
+;; Print symbol name and mnemonic letter of CODING-SYSTEM with `princ'.
 (defun print-coding-system-briefly (coding-system &optional doc-string)
   (if (not coding-system)
       (princ "nil\n")
@@ -293,7 +298,7 @@ at the place of `..':
 
 ;;;###autoload
 (defun describe-current-coding-system ()
-  "Display coding systems currently used in a detailed format."
+  "Display coding systems currently used, in detail."
   (interactive)
   (with-output-to-temp-buffer "*Help*"
     (let* ((proc (get-buffer-process (current-buffer)))
@@ -331,7 +336,7 @@ at the place of `..':
        (while l
          (setq coding (symbol-value (car l)))
          ;; Do not list up the same coding system twice.
-         (when (not (memq coding coding-list))
+         (when (and coding (not (memq coding coding-list)))
            (setq coding-list (cons coding coding-list))
            (princ (format "  %d. %s " i coding))
            (setq aliases (coding-system-get coding 'alias-coding-systems))
@@ -446,15 +451,19 @@ at the place of `..':
               (princ (if (aref flags idx) 1 0))))
            ((eq type 4)                ; CCL
             (let (i len)
-              (setq i 0 len (length (car flags)))
-              (while (< i len)
-                (princ (format " %x" (aref (car flags) i)))
-                (setq i (1+ i)))
+              (if (symbolp (car flags))
+                  (princ (format " %s" (car flags)))
+                (setq i 0 len (length (car flags)))
+                (while (< i len)
+                  (princ (format " %x" (aref (car flags) i)))
+                  (setq i (1+ i))))
               (princ ",")
-              (setq i 0 len (length (cdr flags)))
-              (while (< i len)
-                (princ (format " %x" (aref (cdr flags) i)))
-                (setq i (1+ i)))))
+              (if (symbolp (cdr flags))
+                  (princ (format "%s" (cdr flags)))
+                (setq i 0 len (length (cdr flags)))
+                (while (< i len)
+                  (princ (format " %x" (aref (cdr flags) i)))
+                  (setq i (1+ i))))))
            (t (princ 0)))
       (princ ":")
       (princ (coding-system-doc-string coding-system))
@@ -463,20 +472,23 @@ at the place of `..':
 ;;;###autoload
 (defun list-coding-systems (&optional arg)
   "Display a list of all coding systems.
-It prints mnemonic letter, name, and description of each coding systems.
+This shows the mnemonic letter, name, and description of each coding system.
 
 With prefix arg, the output format gets more cryptic,
-but contains full information about each coding systems."
+but still contains full information about each coding system."
   (interactive "P")
   (with-output-to-temp-buffer "*Help*"
-    (if (null arg)
-       (princ "\
+    (list-coding-systems-1 arg)))
+
+(defun list-coding-systems-1 (arg)
+  (if (null arg)
+      (princ "\
 ###############################################
 # List of coding systems in the following format:
 # MNEMONIC-LETTER -- CODING-SYSTEM-NAME
 #      DOC-STRING
 ")
-      (princ "\
+    (princ "\
 #########################
 ## LIST OF CODING SYSTEMS
 ## Each line corresponds to one coding system
@@ -501,14 +513,14 @@ but contains full information about each coding systems."
 ##  POST-READ-CONVERSION, PRE-WRITE-CONVERSION = function name to be called
 ##
 "))
-    (let ((bases (coding-system-list 'base-only))
-         coding-system)
-      (while bases
-       (setq coding-system (car bases))
-       (if (null arg)
-           (print-coding-system-briefly coding-system 'doc-string)
-         (print-coding-system coding-system))
-       (setq bases (cdr bases))))))
+  (let ((bases (coding-system-list 'base-only))
+       coding-system)
+    (while bases
+      (setq coding-system (car bases))
+      (if (null arg)
+         (print-coding-system-briefly coding-system 'doc-string)
+       (print-coding-system coding-system))
+      (setq bases (cdr bases)))))
 
 ;;;###automatic
 (defun list-coding-categories ()
@@ -609,8 +621,7 @@ but contains full information about each coding systems."
 ;;;###autoload
 (defun describe-fontset (fontset)
   "Display information of FONTSET.
-
-It prints name, size, and style of FONTSET, and lists up fonts
+This shows the name, size, and style of FONTSET, and the list of fonts
 contained in FONTSET.
 
 The column WDxHT contains width and height (pixels) of each fontset
@@ -618,14 +629,14 @@ The column WDxHT contains width and height (pixels) of each fontset
 column means that the corresponding fontset is not yet used in any
 frame.
 
-The O column of each font contains one of the following letters.
+The O column for each font contains one of the following letters:
  o -- font already opened
  - -- font not yet opened
  x -- font can't be opened
  ? -- no font specified
 
-The Charset column of each font contains a name of character set
-displayed by the font."
+The Charset column for each font contains a name of character set
+displayed (for this fontset) using that font."
   (interactive
    (if (not (and window-system (boundp 'global-fontset-alist)))
        (error "No fontsets being used")
@@ -649,15 +660,15 @@ displayed by the font."
 ;;;###autoload
 (defun list-fontsets (arg)
   "Display a list of all fontsets.
-
-It prints name, size, and style of each fontset.
-With prefix arg, it also lists up fonts contained in each fontset.
-See the function `describe-fontset' for the format of the list."
+This shows the name, size, and style of each fontset.
+With prefix arg, it also list the fonts contained in each fontset;
+see the function `describe-fontset' for the format of the list."
   (interactive "P")
   (if (not (and window-system (boundp 'global-fontset-alist)))
       (error "No fontsets being used")
     (with-output-to-temp-buffer "*Help*"
       (save-excursion
+       ;; This code is duplicated near the end of mule-diag.
        (set-buffer standard-output)
        (insert "Fontset-Name\t\t\t\t\t\t  WDxHT Style\n")
        (insert "------------\t\t\t\t\t\t  ----- -----\n")
@@ -668,42 +679,45 @@ See the function `describe-fontset' for the format of the list."
 \f
 ;;;###autoload
 (defun list-input-methods ()
-  "Print information of all input methods."
+  "Display information about all input methods."
   (interactive)
   (with-output-to-temp-buffer "*Help*"
-    (if (not input-method-alist)
-       (progn
-         (princ "
+    (list-input-methods-1)))
+
+(defun list-input-methods-1 ()
+  (if (not input-method-alist)
+      (progn
+       (princ "
 No input method is available, perhaps because you have not yet
 installed LEIM (Libraries of Emacs Input Method).
 
 LEIM is available from the same ftp directory as Emacs.  For instance,
-if there exists an archive file emacs-20.N.tar.gz, there should also
-be a file leim-20.N.tar.gz.  When you extract this file, LEIM files
-are put under the subdirectory emacs-20.2/leim.  When you install
+if there exists an archive file `emacs-20.N.tar.gz', there should also
+be a file `leim-20.N.tar.gz'.  When you extract this file, LEIM files
+are put under the subdirectory `emacs-20.N/leim'.  When you install
 Emacs again, you should be able to use various input methods."))
-      (princ "LANGUAGE\n  NAME (`TITLE' in mode line)\n")
-      (princ "    SHORT-DESCRIPTION\n------------------------------\n")
-      (setq input-method-alist
-           (sort input-method-alist
-                 (function (lambda (x y) (string< (nth 1 x) (nth 1 y))))))
-      (let ((l input-method-alist)
-           language elt)
-       (while l
-         (setq elt (car l) l (cdr l))
-         (when (not (equal language (nth 1 elt)))
-           (setq language (nth 1 elt))
-           (princ language)
-           (terpri))
-         (princ (format "  %s (`%s' in mode line)\n    %s\n"
-                        (car elt)
-                        (let ((title (nth 3 elt)))
-                          (if (and (consp title) (stringp (car title)))
-                              (car title)
-                            title))
-                        (let ((description (nth 4 elt)))
-                          (string-match ".*" description)
-                          (match-string 0 description)))))))))
+    (princ "LANGUAGE\n  NAME (`TITLE' in mode line)\n")
+    (princ "    SHORT-DESCRIPTION\n------------------------------\n")
+    (setq input-method-alist
+         (sort input-method-alist
+               (function (lambda (x y) (string< (nth 1 x) (nth 1 y))))))
+    (let ((l input-method-alist)
+         language elt)
+      (while l
+       (setq elt (car l) l (cdr l))
+       (when (not (equal language (nth 1 elt)))
+         (setq language (nth 1 elt))
+         (princ language)
+         (terpri))
+       (princ (format "  %s (`%s' in mode line)\n    %s\n"
+                      (car elt)
+                      (let ((title (nth 3 elt)))
+                        (if (and (consp title) (stringp (car title)))
+                            (car title)
+                          title))
+                      (let ((description (nth 4 elt)))
+                        (string-match ".*" description)
+                        (match-string 0 description))))))))
 \f
 ;;; DIAGNOSIS
 
@@ -717,17 +731,17 @@ Emacs again, you should be able to use various input methods."))
 (defun mule-diag ()
   "Display diagnosis of the multilingual environment (MULE).
 
-It prints various information related to the current multilingual
+This shows various information related to the current multilingual
 environment, including lists of input methods, coding systems,
-character sets, and fontsets (if Emacs running under some window
+character sets, and fontsets (if Emacs is running under a window
 system which uses fontsets)."
   (interactive)
   (with-output-to-temp-buffer "*Mule-Diagnosis*"
     (save-excursion
       (set-buffer standard-output)
-      (insert "\t###############################\n"
-             "\t### Diagnosis of your Emacs ###\n"
-             "\t###############################\n\n"
+      (insert "###############################################\n"
+             "### Current Status of Multilingual Features ###\n"
+             "###############################################\n\n"
              "CONTENTS: Section 1.  General Information\n"
              "          Section 2.  Display\n"
              "          Section 3.  Input methods\n"
@@ -758,37 +772,47 @@ system which uses fontsets)."
       (insert "\n\n")
 
       (insert-section 3 "Input methods")
-      (save-excursion (list-input-methods))
-      (insert-buffer-substring "*Help*")
+      (list-input-methods-1)
       (insert "\n")
       (if default-input-method
          (insert "Default input method: " default-input-method "\n")
        (insert "No default input method is specified\n"))
 
       (insert-section 4 "Coding systems")
-      (save-excursion (list-coding-systems t))
-      (insert-buffer-substring "*Help*")
-      (save-excursion (list-coding-categories))
-      (insert-buffer-substring "*Help*")
+      (list-coding-systems-1 t)
+      (princ "\
+############################
+## LIST OF CODING CATEGORIES (ordered by priority)
+## CATEGORY:CODING-SYSTEM
+##
+")
+      (let ((l coding-category-list))
+       (while l
+         (princ (format "%s:%s\n" (car l) (symbol-value (car l))))
+         (setq l (cdr l))))
       (insert "\n")
 
       (insert-section 5 "Character sets")
-      (save-excursion (list-character-sets t))
-      (insert-buffer-substring "*Help*")
+      (list-character-sets-1 t)
       (insert "\n")
 
       (when (and window-system (boundp 'global-fontset-alist))
+       ;; This code duplicates most of list-fontsets.
        (insert-section 6 "Fontsets")
-       (save-excursion (list-fontsets t))
-       (insert-buffer-substring "*Help*"))
-      (help-mode))))
+       (insert "Fontset-Name\t\t\t\t\t\t  WDxHT Style\n")
+       (insert "------------\t\t\t\t\t\t  ----- -----\n")
+       (let ((fontsets (fontset-list)))
+         (while fontsets
+           (print-fontset (car fontsets) t)
+           (setq fontsets (cdr fontsets)))))
+      (print-help-return-message))))
 
 \f
 ;;; DUMP DATA FILE
 
 ;;;###autoload
 (defun dump-charsets ()
-  "Dump information of all charsets into the file \"CHARSETS\".
+  "Dump information about all charsets into the file `CHARSETS'.
 The file is saved in the directory `data-directory'."
   (let ((file (expand-file-name "CHARSETS" data-directory))
        buf)
@@ -811,7 +835,7 @@ The file is saved in the directory `data-directory'."
 
 ;;;###autoload
 (defun dump-codings ()
-  "Dump information of all coding systems into the file \"CODINGS\".
+  "Dump information about all coding systems into the file `CODINGS'.
 The file is saved in the directory `data-directory'."
   (let ((file (expand-file-name "CODINGS" data-directory))
        buf)