Mercurial > emacs
annotate lisp/case-table.el @ 108143:624169215019
* emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 27 Apr 2010 13:57:32 -0400 |
parents | 1d1d5d9bd884 |
children | 280c8ae2476d 376148b31b5e |
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 |
74439 | 3 ;; Copyright (C) 1988, 1994, 2001, 2002, 2003, 2004, |
106815 | 4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
6 ;; Author: Howard Gayle |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
7 ;; Maintainer: FSF |
3012
d4b85bbedee8
Change "i14n" keyword to "i18n".
Jim Blandy <jimb@redhat.com>
parents:
2386
diff
changeset
|
8 ;; Keywords: i18n |
36 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
36 | 13 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
36 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
36 | 24 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
25 ;;; Commentary: |
36 | 26 |
27 ;; Written by: | |
28 ;; TN/ETX/TX/UMG Howard Gayle UUCP : seismo!enea!erix!howard | |
29 ;; Telefonaktiebolaget L M Ericsson Phone: +46 8 719 55 65 | |
30 ;; Ericsson Telecom Telex: 14910 ERIC S | |
31 ;; S-126 25 Stockholm FAX : +46 8 719 64 82 | |
32 ;; Sweden | |
33 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
34 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
696
diff
changeset
|
35 |
36 | 36 (defun describe-buffer-case-table () |
37 "Describe the case table of the current buffer." | |
38 (interactive) | |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
39 (let ((description (make-char-table 'case-table))) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
40 (map-char-table |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
41 (function (lambda (key value) |
103946
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
42 (if (not (natnump value)) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
43 (if (consp key) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
44 (set-char-table-range description key "case-invariant") |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
45 (aset description key "case-invariant")) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
46 (let (from to) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
47 (if (consp key) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
48 (setq from (car key) to (cdr key)) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
49 (setq from (setq to key))) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
50 (while (<= from to) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
51 (aset |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
52 description from |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
53 (cond ((/= from (downcase from)) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
54 (concat "uppercase, matches " |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
55 (char-to-string (downcase from)))) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
56 ((/= from (upcase from)) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
57 (concat "lowercase, matches " |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
58 (char-to-string (upcase from)))) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
59 (t "case-invariant"))) |
774187433685
(describe-buffer-case-table): Fix for the case that KEY is a cons.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
60 (setq from (1+ from))))))) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
61 (current-case-table)) |
3550
0d8c66f2e25e
(describe-buffer-case-table): Merge locals i and ch.
Richard M. Stallman <rms@gnu.org>
parents:
3012
diff
changeset
|
62 (save-excursion |
0d8c66f2e25e
(describe-buffer-case-table): Merge locals i and ch.
Richard M. Stallman <rms@gnu.org>
parents:
3012
diff
changeset
|
63 (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
|
64 (set-buffer standard-output) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
65 (describe-vector description) |
9858
0e4831555b2c
(describe-buffer-case-table): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
66 (help-mode))))) |
36 | 67 |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
68 (defun get-upcase-table (case-table) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
69 "Return the upcase table of CASE-TABLE." |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
70 (or (char-table-extra-slot case-table 0) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
71 ;; 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
|
72 ;; it as the standard case table. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
73 (let ((old (standard-case-table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
74 (unwind-protect |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
75 (progn |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
76 (set-standard-case-table case-table) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
77 (char-table-extra-slot case-table 0)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
78 (or (eq case-table old) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
79 (set-standard-case-table old)))))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
80 |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
81 (defun copy-case-table (case-table) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
82 (let ((copy (copy-sequence case-table)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
83 (up (char-table-extra-slot case-table 0))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
84 ;; 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
|
85 ;; they will be recomputed from the main (downcase) table. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
86 (if up |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
87 (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
|
88 (set-char-table-extra-slot copy 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
89 (set-char-table-extra-slot copy 2 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
90 copy)) |
17313 | 91 |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
92 (defun set-case-syntax-delims (l r table) |
36 | 93 "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
|
94 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
|
95 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
|
96 It also modifies `standard-syntax-table' to |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
97 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
|
98 (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
|
99 (aset table r r) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
100 (let ((up (get-upcase-table table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
101 (aset up l l) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
102 (aset up r r)) |
13269
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
103 ;; 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
|
104 ;; 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
|
105 (set-char-table-extra-slot table 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
106 (set-char-table-extra-slot table 2 nil) |
36 | 107 (modify-syntax-entry l (concat "(" (char-to-string r) " ") |
108 (standard-syntax-table)) | |
109 (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
|
110 (standard-syntax-table))) |
36 | 111 |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
112 (defun set-case-syntax-pair (uc lc table) |
36 | 113 "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
|
114 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
|
115 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
|
116 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
|
117 word constituents." |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
118 (aset table uc lc) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
119 (aset table lc lc) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
120 (let ((up (get-upcase-table table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
121 (aset up uc uc) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
122 (aset up lc uc)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
123 ;; Clear out the extra slots so that they will be |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
124 ;; recomputed from the main (downcase) table and upcase table. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
125 (set-char-table-extra-slot table 1 nil) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
126 (set-char-table-extra-slot table 2 nil) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
127 (modify-syntax-entry lc "w " (standard-syntax-table)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
128 (modify-syntax-entry uc "w " (standard-syntax-table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
129 |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
130 (defun set-upcase-syntax (uc lc table) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
131 "Make character UC an upcase of character LC. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
132 It also modifies `standard-syntax-table' to give them the syntax of |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
133 word constituents." |
59860
f4eeaf4ca800
(set-upcase-syntax, set-downcase-syntax): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
59855
diff
changeset
|
134 (aset table lc lc) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
135 (let ((up (get-upcase-table table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
136 (aset up uc uc) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
137 (aset up lc uc)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
138 ;; Clear out the extra slots so that they will be |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
139 ;; recomputed from the main (downcase) table and upcase table. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
140 (set-char-table-extra-slot table 1 nil) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
141 (set-char-table-extra-slot table 2 nil) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
142 (modify-syntax-entry lc "w " (standard-syntax-table)) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
143 (modify-syntax-entry uc "w " (standard-syntax-table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
144 |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
145 (defun set-downcase-syntax (uc lc table) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
146 "Make character LC a downcase of character UC. |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
147 It also modifies `standard-syntax-table' to give them the syntax of |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
148 word constituents." |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
149 (aset table uc lc) |
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
150 (aset table lc lc) |
59860
f4eeaf4ca800
(set-upcase-syntax, set-downcase-syntax): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
59855
diff
changeset
|
151 (let ((up (get-upcase-table table))) |
f4eeaf4ca800
(set-upcase-syntax, set-downcase-syntax): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
59855
diff
changeset
|
152 (aset up uc uc)) |
59659 | 153 ;; 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
|
154 ;; 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
|
155 (set-char-table-extra-slot table 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
156 (set-char-table-extra-slot table 2 nil) |
36 | 157 (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
|
158 (modify-syntax-entry uc "w " (standard-syntax-table))) |
36 | 159 |
2386
ded35864afbe
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Richard M. Stallman <rms@gnu.org>
parents:
2385
diff
changeset
|
160 (defun set-case-syntax (c syntax table) |
17313 | 161 "Make character C case-invariant with syntax SYNTAX. |
162 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
|
163 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
|
164 It also modifies `standard-syntax-table'. |
36 | 165 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
|
166 (aset table c c) |
59855
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
167 (let ((up (get-upcase-table table))) |
e1f57074406e
(get-upcase-table): New function.
Kenichi Handa <handa@m17n.org>
parents:
59659
diff
changeset
|
168 (aset up c c)) |
59659 | 169 ;; 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
|
170 ;; 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
|
171 (set-char-table-extra-slot table 1 nil) |
5db7fb75222a
(copy-case-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9858
diff
changeset
|
172 (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
|
173 (modify-syntax-entry c syntax (standard-syntax-table))) |
36 | 174 |
175 (provide 'case-table) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
176 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
177 ;; arch-tag: 3c2cf885-2c9a-449a-9972-2e269191896d |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
178 ;;; case-table.el ends here |