mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-04 11:40:22 +00:00
(describe-coding-system): Change the
format of showing safe charsets.
This commit is contained in:
parent
dbea676644
commit
0691ad6147
@ -215,12 +215,14 @@ but contains full information about each character sets."
|
||||
(princ "\n")))
|
||||
(let ((charsets (coding-system-get coding-system 'safe-charsets)))
|
||||
(when charsets
|
||||
(princ "This coding system is mainly for the following charsets:\n")
|
||||
(princ " ")
|
||||
(while charsets
|
||||
(if (eq charsets t)
|
||||
(princ "This coding system can encode charsets:\n")
|
||||
(princ "This coding system encode the following charsets:\n")
|
||||
(princ " ")
|
||||
(princ (car charsets))
|
||||
(setq charsets (cdr charsets)))))
|
||||
(while charsets
|
||||
(princ " ")
|
||||
(princ (car charsets))
|
||||
(setq charsets (cdr charsets))))))
|
||||
(save-excursion
|
||||
(set-buffer standard-output)
|
||||
(help-mode)))))
|
||||
|
Loading…
Reference in New Issue
Block a user