diff options
author | Dave Love <fx@gnu.org> | 2000-06-08 16:58:41 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-08 16:58:41 +0000 |
commit | b8fbaf52c55f3d8fc28b43dc232c5dd21c866fa7 (patch) | |
tree | eaf514416db71dc2bd4db05665632689f160942e /lisp/disp-table.el | |
parent | c08398de397d083032253ca03047fdd38e4acff4 (diff) | |
download | emacs-b8fbaf52c55f3d8fc28b43dc232c5dd21c866fa7.tar.gz |
(create-glyph): Doc fix.
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r-- | lisp/disp-table.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index a335d15241c..1acfc8ab8fe 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -163,9 +163,9 @@ X frame." (logior uc (lsh (face-id 'underline) 19)) (create-glyph (concat "\e[4m" (char-to-string uc) "\e[m")))))) -;; Allocate a glyph code to display by sending STRING to the terminal. ;;;###autoload (defun create-glyph (string) + "Allocate a glyph code to display by sending STRING to the terminal." (if (= (length glyph-table) 65536) (error "No free glyph codes remain")) ;; Don't use slots that correspond to ASCII characters. |