1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

(describe-coding-system): Describe `dependency' property..

This commit is contained in:
Kenichi Handa 2002-09-30 06:40:01 +00:00
parent 0c76a98d61
commit 8fdfd269df

View File

@ -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)))