summaryrefslogtreecommitdiff
path: root/lisp/disp-table.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-03-16 20:39:07 +0000
committerJim Blandy <jimb@redhat.com>1992-03-16 20:39:07 +0000
commite8151d91bd02af2b60974c2a439450c81bd24974 (patch)
tree52141382c5b7e71a4fe612c0dfaff741778262b9 /lisp/disp-table.el
parent18806e8f99c254f8f7980ce593dc1532d8ff3373 (diff)
downloademacs-e8151d91bd02af2b60974c2a439450c81bd24974.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r--lisp/disp-table.el6
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))