Function: glyph-char

glyph-char is an autoloaded and byte-compiled function defined in disp-table.el.gz.

Signature

(glyph-char GLYPH)

Documentation

Return the character of glyph code GLYPH.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/disp-table.el.gz
;;;###autoload
(defun glyph-char (glyph)
  "Return the character of glyph code GLYPH."
  (if (consp glyph)
      (car glyph)
    (logand glyph #x3fffff)))