diff options
| -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 59f83531047..dc0d7476b54 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el | |||
| @@ -35,9 +35,9 @@ | |||
| 35 | (prin1 (aref dt 258)) | 35 | (prin1 (aref dt 258)) |
| 36 | (princ "\nCtrl glyph: ") | 36 | (princ "\nCtrl glyph: ") |
| 37 | (prin1 (aref dt 259)) | 37 | (prin1 (aref dt 259)) |
| 38 | (princ "\nSelective display rope: ") | 38 | (princ "\nSelective display glyph sequence: ") |
| 39 | (prin1 (aref dt 260)) | 39 | (prin1 (aref dt 260)) |
| 40 | (princ "\nCharacter display ropes:\n") | 40 | (princ "\nCharacter display glyph sequences:\n") |
| 41 | (let ((vector (make-vector 256 nil)) | 41 | (let ((vector (make-vector 256 nil)) |
| 42 | (i 0)) | 42 | (i 0)) |
| 43 | (while (< i 256) | 43 | (while (< i 256) |
| @@ -68,7 +68,7 @@ | |||
| 68 | (if standard-display-table (aset standard-display-table l nil)) | 68 | (if standard-display-table (aset standard-display-table l nil)) |
| 69 | (or standard-display-table | 69 | (or standard-display-table |
| 70 | (setq standard-display-table (make-vector 261 nil))) | 70 | (setq standard-display-table (make-vector 261 nil))) |
| 71 | (aset standard-display-table l l)) | 71 | (aset standard-display-table l (vector l))) |
| 72 | (setq l (1+ l)))) | 72 | (setq l (1+ l)))) |
| 73 | 73 | ||
| 74 | ;;;###autoload | 74 | ;;;###autoload |