Function: glyphless-set-char-table-range

glyphless-set-char-table-range is a byte-compiled function defined in characters.el.gz.

Signature

(glyphless-set-char-table-range CHARTABLE FROM TO METHOD)

Source Code

;; Defined in /usr/src/emacs/lisp/international/characters.el.gz
(defun glyphless-set-char-table-range (chartable from to method)
  (if (eq method 'acronym)
      (let ((i from))
	(while (<= i to)
	  (set-char-table-range chartable i (aref char-acronym-table i))
	  (setq i (1+ i))))
    (set-char-table-range chartable (cons from to) method)))