]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-current-coding-system):
authorKenichi Handa <handa@m17n.org>
Sun, 2 Aug 1998 01:06:57 +0000 (01:06 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 2 Aug 1998 01:06:57 +0000 (01:06 +0000)
Check if each coding category is bound to a valid coding system.

lisp/international/mule-diag.el

index 188a681370ca95d0833bd13e15a2d62c4c0ddeb8..a32d892b03c6e057a6fe5c0f5f64b6e7eb8fa948 100644 (file)
@@ -336,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))