diff options
author | Kenichi Handa <handa@m17n.org> | 2002-09-30 06:40:01 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2002-09-30 06:40:01 +0000 |
commit | 8fdfd269df4e5859839b741e66f7fdbeea116932 (patch) | |
tree | 7d7f63602500a80baf825e7d499d635b6a2f29c9 /lisp/international/mule-diag.el | |
parent | 0c76a98d614c521ccdd2cff1fe9cd9f51a1577a7 (diff) | |
download | emacs-8fdfd269df4e5859839b741e66f7fdbeea116932.tar.gz |
(describe-coding-system): Describe `dependency' property..
Diffstat (limited to 'lisp/international/mule-diag.el')
-rw-r--r-- | lisp/international/mule-diag.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 2b8b225963e..78c0e1c0e6e 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el @@ -618,6 +618,16 @@ PC `codepages' and other coded character sets. See `non-iso-charset-alist'." (with-output-to-temp-buffer (help-buffer) (print-coding-system-briefly coding-system 'doc-string) (princ "\n") + (let ((vars (coding-system-get coding-system 'dependency))) + (when vars + (princ "See also the documentation of these customizable variables +which alter the behaviour of this coding system.\n") + (dolist (v vars) + (princ " `") + (princ v) + (princ "'\n")) + (princ "\n"))) + (princ "Type: ") (let ((type (coding-system-type coding-system)) (flags (coding-system-flags coding-system))) |