Function: tabulated-list-make-glyphless-char-display-table

tabulated-list-make-glyphless-char-display-table is a byte-compiled function defined in tabulated-list.el.gz.

Signature

(tabulated-list-make-glyphless-char-display-table)

Documentation

Make the glyphless-char-display table used for text-mode frames.

This table is used for displaying the sorting indicators, see variables tabulated-list-tty-sort-indicator-asc and tabulated-list-tty-sort-indicator-desc for more information.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defun tabulated-list-make-glyphless-char-display-table ()
  "Make the `glyphless-char-display' table used for text-mode frames.
This table is used for displaying the sorting indicators, see
variables `tabulated-list-tty-sort-indicator-asc' and
`tabulated-list-tty-sort-indicator-desc' for more information."
  (let ((table (make-char-table 'glyphless-char-display nil)))
    (set-char-table-parent table glyphless-char-display)
    (aset table
          tabulated-list-gui-sort-indicator-desc
          (cons nil (char-to-string tabulated-list-tty-sort-indicator-desc)))
    (aset table
          tabulated-list-gui-sort-indicator-asc
          (cons nil (char-to-string tabulated-list-tty-sort-indicator-asc)))
    table))