mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(describe-display-table): Use with-help-window instead of with-output-to-temp-buffer.
This commit is contained in:
parent
3db0e8bf35
commit
e3d6825752
1 changed files with 2 additions and 3 deletions
|
|
@ -75,7 +75,7 @@ Valid symbols are `truncation', `wrap', `escape', `control',
|
|||
;;;###autoload
|
||||
(defun describe-display-table (dt)
|
||||
"Describe the display table DT in a help buffer."
|
||||
(with-output-to-temp-buffer "*Help*"
|
||||
(with-help-window "*Help*"
|
||||
(princ "\nTruncation glyph: ")
|
||||
(prin1 (display-table-slot dt 'truncation))
|
||||
(princ "\nWrap glyph: ")
|
||||
|
|
@ -97,8 +97,7 @@ Valid symbols are `truncation', `wrap', `escape', `control',
|
|||
(aset vector i (aref dt i))
|
||||
(setq i (1+ i)))
|
||||
(describe-vector vector))
|
||||
(help-mode))
|
||||
(print-help-return-message)))
|
||||
(help-mode))))
|
||||
|
||||
;;;###autoload
|
||||
(defun describe-current-display-table ()
|
||||
|
|
|
|||
Loading…
Reference in a new issue