Mercurial > emacs
annotate lisp/case-table.el @ 90190:d8a6a0474c49
(Fcall_process): Sync with the change in
HEAD (2005-06-04).
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 06 Jun 2005 04:18:18 +0000 |
parents | 19a035ba05a8 |
children | f9a65d7ebd29 |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
19247
diff
changeset
|
1 ;;; case-table.el --- code to extend the character set and support case tables |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
2 |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
3 ;; Copyright (C) 1988, 1994, 2005 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
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 |
3012
d4b85bbedee8
Change "i14n" keyword to "i18n".
Jim Blandy <jimb@redhat.com>
parents:
2386
diff
changeset
|
7 ;; Keywords: i18n |
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 | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
36 | 25 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
26 ;;; Commentary: |
36 | 27 |
28 ;; Written by: | |
29 ;; TN/ETX/TX/UMG Howard Gayle UUCP : seismo!enea!erix!howard | |
30 ;; Telefonaktiebolaget L M Ericsson Phone: +46 8 719 55 65 | |
31 ;; Ericsson Telecom Telex: 14910 ERIC S | |
32 ;; S-126 25 Stockholm FAX : +46 8 719 64 82 | |
33 ;; Sweden | |
34 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
35 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
36 |
36 | 37 (defun describe-buffer-case-table () |
38 "Describe the case table of the current buffer." | |
39 (interactive) | |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
40 (let ((description (make-char-table 'case-table))) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
41 (map-char-table |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
42 (function (lambda (key value) |
89016
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
43 (if (consp key) |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
44 (set-char-table-range description key "case-invariant") |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
45 (aset |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
46 description key |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
47 (cond ((not (natnump value)) |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
48 "case-invariant") |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
49 ((/= key (downcase key)) |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
50 (concat "uppercase, matches " |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
51 (char-to-string (downcase key)))) |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
52 ((/= key (upcase key)) |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
53 (concat "lowercase, matches " |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
54 (char-to-string (upcase key)))) |
82f852ddca70
(describe-buffer-case-table): Handle the case that KEY is a cons
Kenichi Handa <handa@m17n.org>
parents:
88710
diff
changeset
|
55 (t "case-invariant")))))) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
56 (current-case-table)) |
3550
0d8c66f2e25e
(describe-buffer-case-table): Merge locals i and ch.
Richard M. Stallman <rms@gnu.org>
parents:
3012
diff
changeset
|
57 (save-excursion |
0d8c66f2e25e
(describe-buffer-case-table): Merge locals i and ch.
Richard M. Stallman <rms@gnu.org>
parents:
3012
diff
changeset
|
58 (with-output-to-temp-buffer "*Help*" |
0d8c66f2e25e
(describe-buffer-case-table): Merge locals i and ch.
Richard M. Stallman <rms@gnu.org>
parents:
3012
diff
changeset
|
59 (set-buffer standard-output) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
60 (describe-vector description) |
9858
0e4831555b2c
(describe-buffer-case-table): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
61 (help-mode))))) |
36 | 62 |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
63 (defun get-upcase-table (case-table) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
64 "Return the upcase table of CASE-TABLE." |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
65 (or (char-table-extra-slot case-table 0) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
66 ;; Setup all extra slots of CASE-TABLE by temporarily selecting |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
67 ;; it as the standard case table. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
68 (let ((old (standard-case-table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
69 (unwind-protect |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
70 (progn |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
71 (set-standard-case-table case-table) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
72 (char-table-extra-slot case-table 0)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
73 (or (eq case-table old) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
74 (set-standard-case-table old)))))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
75 |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
76 (defun copy-case-table (case-table) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
77 (let ((copy (copy-sequence case-table)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
78 (up (char-table-extra-slot case-table 0))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
79 ;; Clear out the extra slots (except for upcase table) so that |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
80 ;; they will be recomputed from the main (downcase) table. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
81 (if up |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
82 (set-char-table-extra-slot copy 0 (copy-sequence up))) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
83 (set-char-table-extra-slot copy 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
84 (set-char-table-extra-slot copy 2 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
85 copy)) |
17313 | 86 |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
87 (defun set-case-syntax-delims (l r table) |
36 | 88 "Make characters L and R a matching pair of non-case-converting delimiters. |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
89 This sets the entries for L and R in TABLE, which is a string |
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
90 that will be used as the downcase part of a case table. |
7156
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
91 It also modifies `standard-syntax-table' to |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
92 indicate left and right delimiters." |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
93 (aset table l l) |
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
94 (aset table r r) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
95 (let ((up (get-upcase-table table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
96 (aset up l l) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
97 (aset up r r)) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
98 ;; Clear out the extra slots so that they will be |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
99 ;; recomputed from the main (downcase) table and upcase table. |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
100 (set-char-table-extra-slot table 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
101 (set-char-table-extra-slot table 2 nil) |
36 | 102 (modify-syntax-entry l (concat "(" (char-to-string r) " ") |
103 (standard-syntax-table)) | |
104 (modify-syntax-entry r (concat ")" (char-to-string l) " ") | |
7156
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
105 (standard-syntax-table))) |
36 | 106 |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
107 (defun set-case-syntax-pair (uc lc table) |
36 | 108 "Make characters UC and LC a pair of inter-case-converting letters. |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
109 This sets the entries for characters UC and LC in TABLE, which is a string |
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
110 that will be used as the downcase part of a case table. |
7156
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
111 It also modifies `standard-syntax-table' to give them the syntax of |
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
112 word constituents." |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
113 (aset table uc lc) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
114 (aset table lc lc) |
90101
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
115 (let ((up (get-upcase-table table))) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
116 (aset up uc uc) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
117 (aset up lc uc)) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
118 ;; Clear out the extra slots so that they will be |
90101
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
119 ;; recomputed from the main (downcase) table and upcase table. |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
120 (set-char-table-extra-slot table 1 nil) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
121 (set-char-table-extra-slot table 2 nil) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
122 (modify-syntax-entry lc "w " (standard-syntax-table)) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
123 (modify-syntax-entry uc "w " (standard-syntax-table))) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
124 |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
125 (defun set-upcase-syntax (uc lc table) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
126 "Make character UC an upcase of character LC. |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
127 It also modifies `standard-syntax-table' to give them the syntax of |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
128 word constituents." |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
129 (aset table lc lc) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
130 (let ((up (get-upcase-table table))) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
131 (aset up uc uc) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
132 (aset up lc uc)) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
133 ;; Clear out the extra slots so that they will be |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
134 ;; recomputed from the main (downcase) table and upcase table. |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
135 (set-char-table-extra-slot table 1 nil) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
136 (set-char-table-extra-slot table 2 nil) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
137 (modify-syntax-entry lc "w " (standard-syntax-table)) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
138 (modify-syntax-entry uc "w " (standard-syntax-table))) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
139 |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
140 (defun set-downcase-syntax (uc lc table) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
141 "Make character LC a downcase of character UC. |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
142 It also modifies `standard-syntax-table' to give them the syntax of |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
143 word constituents." |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
144 (aset table uc lc) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
145 (aset table lc lc) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
146 (let ((up (get-upcase-table table))) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
147 (aset up uc uc)) |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
148 ;; Clear out the extra slots so that they will be |
19a035ba05a8
Adjust codes merged from trunk for unicode
Kenichi Handa <handa@m17n.org>
parents:
90100
diff
changeset
|
149 ;; recomputed from the main (downcase) table and upcase table. |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
150 (set-char-table-extra-slot table 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
151 (set-char-table-extra-slot table 2 nil) |
36 | 152 (modify-syntax-entry lc "w " (standard-syntax-table)) |
7156
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
153 (modify-syntax-entry uc "w " (standard-syntax-table))) |
36 | 154 |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
155 (defun set-case-syntax (c syntax table) |
17313 | 156 "Make character C case-invariant with syntax SYNTAX. |
157 This sets the entry for character C in TABLE, which is a string | |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
158 that will be used as the downcase part of a case table. |
7156
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
159 It also modifies `standard-syntax-table'. |
36 | 160 SYNTAX should be \" \", \"w\", \".\" or \"_\"." |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
161 (aset table c c) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
162 (let ((up (get-upcase-table table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
163 (aset up c c)) |
59659 | 164 ;; Clear out the extra slots so that they will be |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
165 ;; recomputed from the main (downcase) table and upcase table. |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
166 (set-char-table-extra-slot table 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
167 (set-char-table-extra-slot table 2 nil) |
7156
4d86978056b1
(describe-buffer-case-table): Don't use text-char-description.
Richard M. Stallman <rms@gnu.org>
parents:
3550
diff
changeset
|
168 (modify-syntax-entry c syntax (standard-syntax-table))) |
36 | 169 |
170 (provide 'case-table) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
171 |
52401 | 172 ;;; arch-tag: 3c2cf885-2c9a-449a-9972-2e269191896d |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
173 ;;; case-table.el ends here |