aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-07-15 08:24:47 +0000
committerKenichi Handa1997-07-15 08:24:47 +0000
commitb585fb6c65fc6afac1d795e2c7e62e2a597d7dab (patch)
tree86ae3079c1ee23d252d7f8e8421ec2b745ca19e3
parentdc64cd193a729fa6be918b0e749f9d5474b29619 (diff)
downloademacs-b585fb6c65fc6afac1d795e2c7e62e2a597d7dab.tar.gz
emacs-b585fb6c65fc6afac1d795e2c7e62e2a597d7dab.zip
(describe-current-coding-system): Use coding-category-iso-7-else
instead of coding-category-iso-else.
-rw-r--r--lisp/international/mule-diag.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el
index 4cce91c002c..417eddd79d5 100644
--- a/lisp/international/mule-diag.el
+++ b/lisp/international/mule-diag.el
@@ -314,7 +314,7 @@ at the place of `..':
314 from these, and therefore cannot be recognized automatically 314 from these, and therefore cannot be recognized automatically
315 with the present coding system priorities.\n\n") 315 with the present coding system priorities.\n\n")
316 316
317 (let ((categories '(coding-category-iso-7 coding-category-iso-else)) 317 (let ((categories '(coding-category-iso-7 coding-category-iso-7-else))
318 coding-system codings) 318 coding-system codings)
319 (while categories 319 (while categories
320 (setq coding-system (symbol-value (car categories))) 320 (setq coding-system (symbol-value (car categories)))
@@ -468,7 +468,7 @@ but contains full information about each coding systems."
468 coding-system) 468 coding-system)
469 (while bases 469 (while bases
470 (setq coding-system (car bases)) 470 (setq coding-system (car bases))
471 (if (interactive-p) 471 (if (null arg)
472 (print-coding-system-briefly coding-system 'doc-string) 472 (print-coding-system-briefly coding-system 'doc-string)
473 (print-coding-system coding-system)) 473 (print-coding-system coding-system))
474 (setq bases (cdr bases)))))) 474 (setq bases (cdr bases))))))