From: Kenichi Handa Date: Tue, 1 Oct 2002 06:56:53 +0000 (+0000) Subject: (describe-coding-system): Describe `dependency' property. X-Git-Tag: emacs-pretest-21.2.91~11 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3c18889e3b62cd0f133ba0f392984212a979ef26;p=emacs.git (describe-coding-system): Describe `dependency' property. --- diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index a967844f305..24b6a5d7018 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el @@ -668,6 +668,17 @@ which font is being used for displaying the character." (describe-current-coding-system) (with-output-to-temp-buffer "*Help*" (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"))) + (let ((coding-spec (coding-system-spec coding-system))) (princ "Type: ") (let ((type (coding-system-type coding-system))