diff options
| author | Richard M. Stallman | 1993-04-12 07:54:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-04-12 07:54:04 +0000 |
| commit | 82093c705b64d1b146dd01bf6c82e38fede98212 (patch) | |
| tree | 3750775ff5456b5b54348b76847f761941c9336e | |
| parent | 8931b34ae29460fff0710b39b224e3b7c9ca7add (diff) | |
| download | emacs-82093c705b64d1b146dd01bf6c82e38fede98212.tar.gz emacs-82093c705b64d1b146dd01bf6c82e38fede98212.zip | |
Use `vector', not `make-rope'.
| -rw-r--r-- | lisp/disp-table.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 5ecf667c333..59f83531047 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el | |||
| @@ -76,7 +76,7 @@ | |||
| 76 | "Display character C using string S." | 76 | "Display character C using string S." |
| 77 | (or standard-display-table | 77 | (or standard-display-table |
| 78 | (setq standard-display-table (make-vector 261 nil))) | 78 | (setq standard-display-table (make-vector 261 nil))) |
| 79 | (aset standard-display-table c (apply 'make-rope (append s nil)))) | 79 | (aset standard-display-table c (apply 'vector (append s nil)))) |
| 80 | 80 | ||
| 81 | ;;;###autoload | 81 | ;;;###autoload |
| 82 | (defun standard-display-g1 (c sc) | 82 | (defun standard-display-g1 (c sc) |
| @@ -84,7 +84,7 @@ | |||
| 84 | (or standard-display-table | 84 | (or standard-display-table |
| 85 | (setq standard-display-table (make-vector 261 nil))) | 85 | (setq standard-display-table (make-vector 261 nil))) |
| 86 | (aset standard-display-table c | 86 | (aset standard-display-table c |
| 87 | (make-rope (create-glyph (concat "\016" (char-to-string sc) "\017"))))) | 87 | (vector (create-glyph (concat "\016" (char-to-string sc) "\017"))))) |
| 88 | 88 | ||
| 89 | ;;;###autoload | 89 | ;;;###autoload |
| 90 | (defun standard-display-graphic (c gc) | 90 | (defun standard-display-graphic (c gc) |
| @@ -92,7 +92,7 @@ | |||
| 92 | (or standard-display-table | 92 | (or standard-display-table |
| 93 | (setq standard-display-table (make-vector 261 nil))) | 93 | (setq standard-display-table (make-vector 261 nil))) |
| 94 | (aset standard-display-table c | 94 | (aset standard-display-table c |
| 95 | (make-rope (create-glyph (concat "\e(0" (char-to-string gc) "\e(B"))))) | 95 | (vector (create-glyph (concat "\e(0" (char-to-string gc) "\e(B"))))) |
| 96 | 96 | ||
| 97 | ;;;###autoload | 97 | ;;;###autoload |
| 98 | (defun standard-display-underline (c uc) | 98 | (defun standard-display-underline (c uc) |
| @@ -100,7 +100,7 @@ | |||
| 100 | (or standard-display-table | 100 | (or standard-display-table |
| 101 | (setq standard-display-table (make-vector 261 nil))) | 101 | (setq standard-display-table (make-vector 261 nil))) |
| 102 | (aset standard-display-table c | 102 | (aset standard-display-table c |
| 103 | (make-rope (create-glyph (concat "\e[4m" (char-to-string uc) "\e[m"))))) | 103 | (vector (create-glyph (concat "\e[4m" (char-to-string uc) "\e[m"))))) |
| 104 | 104 | ||
| 105 | ;; Allocate a glyph code to display by sending STRING to the terminal. | 105 | ;; Allocate a glyph code to display by sending STRING to the terminal. |
| 106 | ;;;###autoload | 106 | ;;;###autoload |