Mercurial > emacs
annotate lisp/disp-table.el @ 2372:ad7cb938ae08
* xselect.c (SELECTION_QUANTUM): Don't use XMaxRequestSize on R3;
access the display structure directly.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 25 Mar 1993 23:27:42 +0000 |
parents | 4a3438b8b92d |
children | 76685b00c607 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; disp-table.el --- functions for dealing with char tables. |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1987 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
5 ;; Author: Howard Gayle |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
6 ;; Maintainer: FSF |
845 | 7 ;; Keywords: i14n |
36 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 14 ;; any later version. |
15 | |
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. | |
20 | |
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. | |
24 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
25 ;;; Code: |
36 | 26 |
2072 | 27 (defun describe-display-table (dt) |
584 | 28 "Describe the display table DT in a help buffer." |
36 | 29 (with-output-to-temp-buffer "*Help*" |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
30 (princ "\nTruncation glyph: ") |
36 | 31 (prin1 (aref dt 256)) |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
32 (princ "\nWrap glyph: ") |
36 | 33 (prin1 (aref dt 257)) |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
34 (princ "\nEscape glyph: ") |
36 | 35 (prin1 (aref dt 258)) |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
36 (princ "\nCtrl glyph: ") |
36 | 37 (prin1 (aref dt 259)) |
38 (princ "\nSelective display rope: ") | |
2072 | 39 (prin1 (aref dt 260)) |
36 | 40 (princ "\nCharacter display ropes:\n") |
41 (let ((vector (make-vector 256 nil)) | |
42 (i 0)) | |
43 (while (< i 256) | |
2072 | 44 (aset vector i (aref dt i)) |
36 | 45 (setq i (1+ i))) |
46 (describe-vector vector)) | |
47 (print-help-return-message))) | |
48 | |
2072 | 49 ;;;###autoload |
36 | 50 (defun describe-current-display-table () |
584 | 51 "Describe the display table in use in the selected window and buffer." |
36 | 52 (interactive) |
53 (describe-display-table | |
54 (or (window-display-table (selected-window)) | |
55 buffer-display-table | |
56 standard-display-table))) | |
57 | |
2072 | 58 ;;;###autoload |
36 | 59 (defun make-display-table () |
2072 | 60 "Return a new, empty display table." |
36 | 61 (make-vector 261 nil)) |
62 | |
2072 | 63 ;;;###autoload |
36 | 64 (defun standard-display-8bit (l h) |
584 | 65 "Display characters in the range L to H literally." |
36 | 66 (while (<= l h) |
67 (if (and (>= l ?\ ) (< l 127)) | |
68 (if standard-display-table (aset standard-display-table l nil)) | |
69 (or standard-display-table | |
70 (setq standard-display-table (make-vector 261 nil))) | |
71 (aset standard-display-table l l)) | |
72 (setq l (1+ l)))) | |
73 | |
2072 | 74 ;;;###autoload |
36 | 75 (defun standard-display-ascii (c s) |
76 "Display character C using string S." | |
77 (or standard-display-table | |
78 (setq standard-display-table (make-vector 261 nil))) | |
79 (aset standard-display-table c (apply 'make-rope (append s nil)))) | |
80 | |
2072 | 81 ;;;###autoload |
36 | 82 (defun standard-display-g1 (c sc) |
83 "Display character C as character SC in the g1 character set." | |
84 (or standard-display-table | |
85 (setq standard-display-table (make-vector 261 nil))) | |
86 (aset standard-display-table c | |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
87 (make-rope (create-glyph (concat "\016" (char-to-string sc) "\017"))))) |
36 | 88 |
2072 | 89 ;;;###autoload |
36 | 90 (defun standard-display-graphic (c gc) |
91 "Display character C as character GC in graphics character set." | |
92 (or standard-display-table | |
93 (setq standard-display-table (make-vector 261 nil))) | |
94 (aset standard-display-table c | |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
95 (make-rope (create-glyph (concat "\e(0" (char-to-string gc) "\e(B"))))) |
36 | 96 |
2072 | 97 ;;;###autoload |
36 | 98 (defun standard-display-underline (c uc) |
99 "Display character C as character UC plus underlining." | |
100 (or standard-display-table | |
101 (setq standard-display-table (make-vector 261 nil))) | |
102 (aset standard-display-table c | |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
103 (make-rope (create-glyph (concat "\e[4m" (char-to-string uc) "\e[m"))))) |
36 | 104 |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
105 ;; Allocate a glyph code to display by sending STRING to the terminal. |
2072 | 106 ;;;###autoload |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
107 (defun create-glyph (string) |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
108 (if (= (length glyph-table) 65536) |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
109 (error "No free glyph codes remain")) |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
110 (setq glyph-table (vconcat glyph-table (list string))) |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
111 (1- (length glyph-table))) |
36 | 112 |
113 (provide 'disp-table) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
114 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
115 ;;; disp-table.el ends here |