1 ;;; disp-table.el --- functions for dealing with char tables.
3 ;; Copyright (C) 1987, 1994 Free Software Foundation, Inc.
5 ;; Author: Howard Gayle
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 (defconst display-table-len
262
28 "The proper length of a display table.")
30 (defun describe-display-table (dt)
31 "Describe the display table DT in a help buffer."
32 (with-output-to-temp-buffer "*Help*"
33 (princ "\nTruncation glyph: ")
35 (princ "\nWrap glyph: ")
37 (princ "\nEscape glyph: ")
39 (princ "\nCtrl glyph: ")
41 (princ "\nSelective display glyph sequence: ")
43 (princ "\nVertical window border glyph: ")
45 (princ "\nCharacter display glyph sequences:\n")
47 (set-buffer standard-output
)
48 (let ((vector (make-vector 256 nil
))
51 (aset vector i
(aref dt i
))
53 (describe-vector vector
))
55 (print-help-return-message)))
58 (defun describe-current-display-table ()
59 "Describe the display table in use in the selected window and buffer."
62 (or (window-display-table (selected-window))
64 standard-display-table
)))
66 (describe-display-table disptab
)
67 (message "No display table"))))
70 (defun make-display-table ()
71 "Return a new, empty display table."
72 (make-vector display-table-len nil
))
75 (defun standard-display-8bit (l h
)
76 "Display characters in the range L to H literally."
78 (if (and (>= l ?\
) (< l
127))
79 (if standard-display-table
(aset standard-display-table l nil
))
80 (or standard-display-table
81 (setq standard-display-table
(make-vector display-table-len nil
)))
82 (aset standard-display-table l
(vector l
)))
86 (defun standard-display-default (l h
)
87 "Display characters in the range L to H using the default notation."
89 (if (and (>= l ?\
) (< l
127))
90 (if standard-display-table
(aset standard-display-table l nil
))
91 (or standard-display-table
92 (setq standard-display-table
(make-vector display-table-len nil
)))
93 (aset standard-display-table l nil
))
97 ;; This function does NOT take terminal-dependent escape sequences.
98 ;; For that, you need to go through create-glyph. Use one of the
99 ;; other functions below, or roll your own.
100 (defun standard-display-ascii (c s
)
101 "Display character C using printable string S."
102 (or standard-display-table
103 (setq standard-display-table
(make-vector display-table-len nil
)))
104 (aset standard-display-table c
(apply 'vector
(append s nil
))))
107 (defun standard-display-g1 (c sc
)
108 "Display character C as character SC in the g1 character set.
109 This function assumes that your terminal uses the SO/SI characters;
110 it is meaningless for an X frame."
112 (error "Cannot use string glyphs in a windowing system"))
113 (or standard-display-table
114 (setq standard-display-table
(make-vector display-table-len nil
)))
115 (aset standard-display-table c
116 (vector (create-glyph (concat "\016" (char-to-string sc
) "\017")))))
119 (defun standard-display-graphic (c gc
)
120 "Display character C as character GC in graphics character set.
121 This function assumes VT100-compatible escapes; it is meaningless for an
124 (error "Cannot use string glyphs in a windowing system"))
125 (or standard-display-table
126 (setq standard-display-table
(make-vector display-table-len nil
)))
127 (aset standard-display-table c
128 (vector (create-glyph (concat "\e(0" (char-to-string gc
) "\e(B")))))
131 (defun standard-display-underline (c uc
)
132 "Display character C as character UC plus underlining."
133 (if window-system
(require 'faces
))
134 (or standard-display-table
135 (setq standard-display-table
(make-vector display-table-len nil
)))
136 (aset standard-display-table c
139 (logior uc
(lsh (face-id (internal-find-face 'underline
)) 8))
140 (create-glyph (concat "\e[4m" (char-to-string uc
) "\e[m"))))))
142 ;; Allocate a glyph code to display by sending STRING to the terminal.
144 (defun create-glyph (string)
145 (if (= (length glyph-table
) 65536)
146 (error "No free glyph codes remain"))
147 ;; Don't use slots that correspond to ASCII characters.
148 (if (= (length glyph-table
) 32)
149 (setq glyph-table
(vconcat glyph-table
(make-vector 224 nil
))))
150 (setq glyph-table
(vconcat glyph-table
(list string
)))
151 (1- (length glyph-table
)))
154 (defun standard-display-european (arg)
155 "Toggle display of European characters encoded with ISO 8859.
156 When enabled, characters in the range of 160 to 255 display not
157 as octal escapes, but as accented characters.
158 With prefix argument, enable European character display iff arg is positive."
160 (if (or (<= (prefix-numeric-value arg
) 0)
162 (vectorp standard-display-table
)
163 (>= (length standard-display-table
) 161)
164 (equal (aref standard-display-table
160) [160])))
165 (standard-display-default 160 255)
166 (standard-display-8bit 160 255)))
168 (provide 'disp-table)
170 ;;; disp-table.el ends here