diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-04-12 07:54:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-04-12 07:54:04 +0000 |
commit | d4f030f6f10f3e3f87b49dbb1286911c9a51f5e3 (patch) | |
tree | 0e2efdc74606a727323e5fc310040a2fbbe7318d /lisp/disp-table.el | |
parent | d58f8dcabd3f160d4c16cfafc207c8d3d16342a0 (diff) | |
download | emacs-d4f030f6f10f3e3f87b49dbb1286911c9a51f5e3.tar.gz |
Use `vector', not `make-rope'.
Diffstat (limited to 'lisp/disp-table.el')
-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 @@ "Display character C using string S." (or standard-display-table (setq standard-display-table (make-vector 261 nil))) - (aset standard-display-table c (apply 'make-rope (append s nil)))) + (aset standard-display-table c (apply 'vector (append s nil)))) ;;;###autoload (defun standard-display-g1 (c sc) @@ -84,7 +84,7 @@ (or standard-display-table (setq standard-display-table (make-vector 261 nil))) (aset standard-display-table c - (make-rope (create-glyph (concat "\016" (char-to-string sc) "\017"))))) + (vector (create-glyph (concat "\016" (char-to-string sc) "\017"))))) ;;;###autoload (defun standard-display-graphic (c gc) @@ -92,7 +92,7 @@ (or standard-display-table (setq standard-display-table (make-vector 261 nil))) (aset standard-display-table c - (make-rope (create-glyph (concat "\e(0" (char-to-string gc) "\e(B"))))) + (vector (create-glyph (concat "\e(0" (char-to-string gc) "\e(B"))))) ;;;###autoload (defun standard-display-underline (c uc) @@ -100,7 +100,7 @@ (or standard-display-table (setq standard-display-table (make-vector 261 nil))) (aset standard-display-table c - (make-rope (create-glyph (concat "\e[4m" (char-to-string uc) "\e[m"))))) + (vector (create-glyph (concat "\e[4m" (char-to-string uc) "\e[m"))))) ;; Allocate a glyph code to display by sending STRING to the terminal. ;;;###autoload |