# HG changeset patch # User Kenichi Handa # Date 902020017 0 # Node ID 5effd15f2a1825f4b3fe8fb53371fc241b6a1d53 # Parent e7a1b839f16c46217b707f081c539f8720964455 (describe-current-coding-system): Check if each coding category is bound to a valid coding system. diff -r e7a1b839f16c -r 5effd15f2a18 lisp/international/mule-diag.el --- a/lisp/international/mule-diag.el Sun Aug 02 01:06:57 1998 +0000 +++ b/lisp/international/mule-diag.el Sun Aug 02 01:06:57 1998 +0000 @@ -336,7 +336,7 @@ (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))