diff lisp/disp-table.el @ 584:4cd7543be581

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Mar 1992 20:39:07 +0000
parents 9697c13298e5
children 8a533acedb77
line wrap: on
line diff
--- a/lisp/disp-table.el	Mon Mar 16 20:39:05 1992 +0000
+++ b/lisp/disp-table.el	Mon Mar 16 20:39:07 1992 +0000
@@ -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))