diff options
author | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
commit | 49116ac071969bee7f129bf7ce725c7a5b0b0fc5 (patch) | |
tree | 60c249f15b04478367256fef95c6fd7557f263b9 /lisp/disp-table.el | |
parent | 3b4a6e271d44955328c39de1475e42cf0b4cd637 (diff) | |
download | emacs-49116ac071969bee7f129bf7ce725c7a5b0b0fc5.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r-- | lisp/disp-table.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index c0fe4dfe8af..524bc80cd3f 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -31,7 +31,7 @@ (setq i (1+ i))))) (defun describe-display-table (DT) - "Describe the display-table DT in a help buffer." + "Describe the display table DT in a help buffer." (with-output-to-temp-buffer "*Help*" (princ "\nTruncation glyf: ") (prin1 (aref dt 256)) @@ -56,7 +56,7 @@ (print-help-return-message))) (defun describe-current-display-table () - "Describe the display-table in use in the selected window and buffer." + "Describe the display table in use in the selected window and buffer." (interactive) (describe-display-table (or (window-display-table (selected-window)) @@ -67,7 +67,7 @@ (make-vector 261 nil)) (defun standard-display-8bit (l h) - "Display characters in the range [L, H] literally." + "Display characters in the range L to H literally." (while (<= l h) (if (and (>= l ?\ ) (< l 127)) (if standard-display-table (aset standard-display-table l nil)) |