1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

Use vector', not make-rope'.

This commit is contained in:
Richard M. Stallman 1993-04-12 07:54:04 +00:00
parent 8931b34ae2
commit 82093c705b

View File

@ -76,7 +76,7 @@
"Display character C using string S." "Display character C using string S."
(or standard-display-table (or standard-display-table
(setq standard-display-table (make-vector 261 nil))) (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 ;;;###autoload
(defun standard-display-g1 (c sc) (defun standard-display-g1 (c sc)
@ -84,7 +84,7 @@
(or standard-display-table (or standard-display-table
(setq standard-display-table (make-vector 261 nil))) (setq standard-display-table (make-vector 261 nil)))
(aset standard-display-table c (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 ;;;###autoload
(defun standard-display-graphic (c gc) (defun standard-display-graphic (c gc)
@ -92,7 +92,7 @@
(or standard-display-table (or standard-display-table
(setq standard-display-table (make-vector 261 nil))) (setq standard-display-table (make-vector 261 nil)))
(aset standard-display-table c (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 ;;;###autoload
(defun standard-display-underline (c uc) (defun standard-display-underline (c uc)
@ -100,7 +100,7 @@
(or standard-display-table (or standard-display-table
(setq standard-display-table (make-vector 261 nil))) (setq standard-display-table (make-vector 261 nil)))
(aset standard-display-table c (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. ;; Allocate a glyph code to display by sending STRING to the terminal.
;;;###autoload ;;;###autoload