Function: describe-current-display-table
describe-current-display-table is an autoloaded, interactive and
byte-compiled function defined in disp-table.el.gz.
Signature
(describe-current-display-table)
Documentation
Describe the display table in use in the selected window and buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/disp-table.el.gz
;;;###autoload
(defun describe-current-display-table ()
"Describe the display table in use in the selected window and buffer."
(interactive)
(let ((disptab (or (window-display-table)
buffer-display-table
standard-display-table)))
(if disptab
(describe-display-table disptab)
(message "No display table"))))