(describe-coding-system, print-coding-system-briefly): Make printed output have a similar
format as describe-character-set.
This commit is contained in:
parent
78f743c793
commit
67ad2f93c2
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-12-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* international/mule-diag.el (describe-coding-system,
|
||||
print-coding-system-briefly): Make printed output have a similar
|
||||
format as describe-character-set.
|
||||
|
||||
2001-12-20 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
|
||||
|
||||
* play/blackbox.el (bb-member): Remove, use member instead.
|
||||
|
|
|
@ -675,6 +675,7 @@ which font is being used for displaying the character."
|
|||
(interactive-p))
|
||||
(with-output-to-temp-buffer (help-buffer)
|
||||
(print-coding-system-briefly coding-system 'doc-string)
|
||||
(princ "\n")
|
||||
(let ((coding-spec (coding-system-spec coding-system)))
|
||||
(princ "Type: ")
|
||||
(let ((type (coding-system-type coding-system))
|
||||
|
@ -814,10 +815,10 @@ at the place of `..':
|
|||
(princ (format " %S" (cons 'alias: (cdr aliases)))))
|
||||
(if (memq coding-system aliases)
|
||||
(princ (format " (alias of %s)" (car aliases))))))
|
||||
(princ "\n")
|
||||
(princ "\n\n")
|
||||
(if (and doc-string
|
||||
(setq doc-string (coding-system-doc-string coding-system)))
|
||||
(princ (format " %s\n" doc-string)))))
|
||||
(princ (format "%s\n" doc-string)))))
|
||||
|
||||
;;;###autoload
|
||||
(defun describe-current-coding-system ()
|
||||
|
|
Loading…
Add table
Reference in a new issue