Mercurial > emacs
annotate lisp/case-table.el @ 765:e4093444f9f8
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 13 Jul 1992 20:53:59 +0000 |
parents | 904853a03d9a |
children | 4f28bd14272c |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; case-table.el --- functions for extending the character set and dealing with case tables. |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
36 | 3 ;; Copyright (C) 1988 Free Software Foundation, Inc. |
4 | |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
9 ;; the Free Software Foundation; either version 1, or (at your option) | |
10 ;; any later version. | |
11 | |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 | |
17 ;; You should have received a copy of the GNU General Public License | |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
21 | |
22 ;; Written by: | |
23 ;; TN/ETX/TX/UMG Howard Gayle UUCP : seismo!enea!erix!howard | |
24 ;; Telefonaktiebolaget L M Ericsson Phone: +46 8 719 55 65 | |
25 ;; Ericsson Telecom Telex: 14910 ERIC S | |
26 ;; S-126 25 Stockholm FAX : +46 8 719 64 82 | |
27 ;; Sweden | |
28 | |
29 (defun describe-buffer-case-table () | |
30 "Describe the case table of the current buffer." | |
31 (interactive) | |
32 (let ((vector (make-vector 256 nil)) | |
33 (case-table (current-case-table)) | |
34 (i 0)) | |
35 (while (< i 256) | |
36 (aset vector i | |
37 (cond ((/= ch (downcase ch)) | |
38 (concat "uppercase, matches " | |
39 (text-char-description (downcase ch)))) | |
40 ((/= ch (upcase ch)) | |
41 (concat "lowercase, matches " | |
42 (text-char-description (upcase ch)))) | |
43 (t "case-invariant"))) | |
44 (setq i (1+ i)))) | |
45 (with-output-to-temp-buffer "*Help*" | |
46 (describe-vector vector))) | |
47 | |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
48 (defun set-case-syntax-delims (l r string) |
36 | 49 "Make characters L and R a matching pair of non-case-converting delimiters. |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
50 Sets the entries for L and R in STRING, which is a downcasing table. |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
51 Also modifies `standard-syntax-table', and `text-mode-syntax-table' to |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
52 indicate left and right delimiters." |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
53 (aset string l l) |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
54 (aset string r r) |
36 | 55 (modify-syntax-entry l (concat "(" (char-to-string r) " ") |
56 (standard-syntax-table)) | |
57 (modify-syntax-entry l (concat "(" (char-to-string r) " ") | |
58 text-mode-syntax-table) | |
59 (modify-syntax-entry r (concat ")" (char-to-string l) " ") | |
60 (standard-syntax-table)) | |
61 (modify-syntax-entry r (concat ")" (char-to-string l) " ") | |
62 text-mode-syntax-table)) | |
63 | |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
64 (defun set-case-syntax-pair (uc lc string) |
36 | 65 "Make characters UC and LC a pair of inter-case-converting letters. |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
66 Sets the entries for characters UC and LC in STRING, which is a downcasing table. |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
67 Also modify `standard-syntax-table' and `text-mode-syntax-table' to indicate an |
584 | 68 (uppercase, lowercase) pair of letters." |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
69 (aset string uc lc) |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
70 (aset (car (cdr (standard-case-table))) lc uc) |
36 | 71 (modify-syntax-entry lc "w " (standard-syntax-table)) |
72 (modify-syntax-entry lc "w " text-mode-syntax-table) | |
73 (modify-syntax-entry uc "w " (standard-syntax-table)) | |
74 (modify-syntax-entry uc "w " text-mode-syntax-table)) | |
75 | |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
76 (defun set-case-syntax (c syntax string) |
36 | 77 "Make characters C case-invariant with syntax SYNTAX. |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
78 Sets the entries for character C in STRING, which is the downcasing table. |
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
79 Also modify `standard-syntax-table' and `text-mode-syntax-table'. |
36 | 80 SYNTAX should be \" \", \"w\", \".\" or \"_\"." |
696
904853a03d9a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
81 (aset string c c) |
36 | 82 (modify-syntax-entry c syntax (standard-syntax-table)) |
83 (modify-syntax-entry c syntax text-mode-syntax-table)) | |
84 | |
85 (provide 'case-table) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
86 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
87 ;;; case-table.el ends here |