diff options
| author | Kenichi Handa | 1998-08-02 01:06:57 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-08-02 01:06:57 +0000 |
| commit | 2149d013540a5d367956d28abf64d0de4673cdab (patch) | |
| tree | 521fa01fa7acb5d7757ac9448fac65a8d88d5b6e | |
| parent | c76b5c998d821bb469516498906c282dfc14d4a5 (diff) | |
| download | emacs-2149d013540a5d367956d28abf64d0de4673cdab.tar.gz emacs-2149d013540a5d367956d28abf64d0de4673cdab.zip | |
(describe-current-coding-system):
Check if each coding category is bound to a valid coding system.
| -rw-r--r-- | lisp/international/mule-diag.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 188a681370c..a32d892b03c 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -336,7 +336,7 @@ at the place of `..': | |||
| 336 | (while l | 336 | (while l |
| 337 | (setq coding (symbol-value (car l))) | 337 | (setq coding (symbol-value (car l))) |
| 338 | ;; Do not list up the same coding system twice. | 338 | ;; Do not list up the same coding system twice. |
| 339 | (when (not (memq coding coding-list)) | 339 | (when (and coding (not (memq coding coding-list))) |
| 340 | (setq coding-list (cons coding coding-list)) | 340 | (setq coding-list (cons coding coding-list)) |
| 341 | (princ (format " %d. %s " i coding)) | 341 | (princ (format " %d. %s " i coding)) |
| 342 | (setq aliases (coding-system-get coding 'alias-coding-systems)) | 342 | (setq aliases (coding-system-get coding 'alias-coding-systems)) |