changeset 2628:6b17fe69a82f

* disp-table.el (describe-display-table): Don't use the term "rope"; we're using vectors of characters now. (standard-display-8bit, standard-display-ascii): Set the element of the display table to a vector, not an integer; the latter doesn't mean anything.
author Jim Blandy <jimb@redhat.com>
date Mon, 03 May 1993 03:35:53 +0000
parents bc86243d1361
children 137117f5c44c
files lisp/disp-table.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/disp-table.el	Mon May 03 03:35:01 1993 +0000
+++ b/lisp/disp-table.el	Mon May 03 03:35:53 1993 +0000
@@ -35,9 +35,9 @@
     (prin1 (aref dt 258))
     (princ "\nCtrl glyph: ")
     (prin1 (aref dt 259))
-    (princ "\nSelective display rope: ")
+    (princ "\nSelective display glyph sequence: ")
     (prin1 (aref dt 260))
-    (princ "\nCharacter display ropes:\n")
+    (princ "\nCharacter display glyph sequences:\n")
     (let ((vector (make-vector 256 nil))
 	  (i 0))
       (while (< i 256)
@@ -68,7 +68,7 @@
 	(if standard-display-table (aset standard-display-table l nil))
       (or standard-display-table
 	  (setq standard-display-table (make-vector 261 nil)))
-      (aset standard-display-table l l))
+      (aset standard-display-table l (vector l)))
     (setq l (1+ l))))
 
 ;;;###autoload