Function: standard-display-ascii

standard-display-ascii is an autoloaded and byte-compiled function defined in disp-table.el.gz.

Signature

(standard-display-ascii C S)

Documentation

Display character C using printable string S.

Source Code

;; Defined in /usr/src/emacs/lisp/disp-table.el.gz
;; This function does NOT take terminal-dependent escape sequences.
;; For that, you need to go through create-glyph.  Use one of the
;; other functions below, or roll your own.
;;;###autoload
(defun standard-display-ascii (c s)
  "Display character C using printable string S."
  (or standard-display-table
      (setq standard-display-table (make-display-table)))
  (aset standard-display-table c (vconcat s)))