Function: standard-display-default

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

Signature

(standard-display-default L H)

Documentation

Display characters in the range L to H using the default notation.

Source Code

;; Defined in /usr/src/emacs/lisp/disp-table.el.gz
;;;###autoload
(defun standard-display-default (l h)
  "Display characters in the range L to H using the default notation."
  (or standard-display-table
      (setq standard-display-table (make-display-table)))
  (while (<= l h)
    (if (and (>= l ?\s) (characterp l))
	(aset standard-display-table l nil))
    (setq l (1+ l))))