]> code.delx.au - gnu-emacs/blob - lisp/case-table.el
(set-case-syntax-set-multibyte): New variable.
[gnu-emacs] / lisp / case-table.el
1 ;;; case-table.el --- code to extend the character set and support case tables.
2
3 ;; Copyright (C) 1988, 1994 Free Software Foundation, Inc.
4
5 ;; Author: Howard Gayle
6 ;; Maintainer: FSF
7 ;; Keywords: i18n
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
13 ;; the Free Software Foundation; either version 2, or (at your option)
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 the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
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
35 ;;; Code:
36
37 (defvar set-case-syntax-offset 0)
38
39 (defvar set-case-syntax-set-multibyte nil)
40
41 ;;;###autoload
42 (defun describe-buffer-case-table ()
43 "Describe the case table of the current buffer."
44 (interactive)
45 (let ((description (make-char-table 'case-table)))
46 (map-char-table
47 (function (lambda (key value)
48 (set-char-table-range
49 description key
50 (cond ((null key)
51 "case-invariant")
52 ((/= key (downcase key))
53 (concat "uppercase, matches "
54 (char-to-string (downcase key))))
55 ((/= key (upcase key))
56 (concat "lowercase, matches "
57 (char-to-string (upcase key))))
58 (t "case-invariant")))))
59 (current-case-table))
60 (save-excursion
61 (with-output-to-temp-buffer "*Help*"
62 (set-buffer standard-output)
63 (describe-vector description)
64 (help-mode)))))
65
66 ;;;###autoload
67 (defun copy-case-table (case-table)
68 (let ((copy (copy-sequence case-table)))
69 ;; Clear out the extra slots so that they will be
70 ;; recomputed from the main (downcase) table.
71 (set-char-table-extra-slot copy 0 nil)
72 (set-char-table-extra-slot copy 1 nil)
73 (set-char-table-extra-slot copy 2 nil)
74 copy))
75
76 (defsubst set-case-syntax-1 (char)
77 "Offset CHAR by `set-case-syntax-offset' if CHAR is a non-ASCII 8-bit char."
78 (if (and (>= char 128) (< char 256))
79 (+ char set-case-syntax-offset)
80 char))
81
82 ;;;###autoload
83 (defun set-case-syntax-delims (l r table)
84 "Make characters L and R a matching pair of non-case-converting delimiters.
85 This sets the entries for L and R in TABLE, which is a string
86 that will be used as the downcase part of a case table.
87 It also modifies `standard-syntax-table' to
88 indicate left and right delimiters."
89 (setq l (set-case-syntax-1 l))
90 (setq r (set-case-syntax-1 r))
91 (aset table l l)
92 (aset table r r)
93 ;; Clear out the extra slots so that they will be
94 ;; recomputed from the main (downcase) table.
95 (set-char-table-extra-slot table 0 nil)
96 (set-char-table-extra-slot table 1 nil)
97 (set-char-table-extra-slot table 2 nil)
98 (modify-syntax-entry l (concat "(" (char-to-string r) " ")
99 (standard-syntax-table))
100 (modify-syntax-entry r (concat ")" (char-to-string l) " ")
101 (standard-syntax-table)))
102
103 ;;;###autoload
104 (defun set-case-syntax-pair (uc lc table)
105 "Make characters UC and LC a pair of inter-case-converting letters.
106 This sets the entries for characters UC and LC in TABLE, which is a string
107 that will be used as the downcase part of a case table.
108 It also modifies `standard-syntax-table' to give them the syntax of
109 word constituents."
110 (setq uc (set-case-syntax-1 uc))
111 (setq lc (set-case-syntax-1 lc))
112 (aset table uc lc)
113 (aset table lc lc)
114 (set-char-table-extra-slot table 0 nil)
115 (set-char-table-extra-slot table 1 nil)
116 (set-char-table-extra-slot table 2 nil)
117 (modify-syntax-entry lc "w " (standard-syntax-table))
118 (modify-syntax-entry uc "w " (standard-syntax-table)))
119
120 ;;;###autoload
121 (defun set-case-syntax (c syntax table)
122 "Make character C case-invariant with syntax SYNTAX.
123 This sets the entry for character C in TABLE, which is a string
124 that will be used as the downcase part of a case table.
125 It also modifies `standard-syntax-table'.
126 SYNTAX should be \" \", \"w\", \".\" or \"_\"."
127 (setq c (set-case-syntax-1 c))
128 (aset table c c)
129 (set-char-table-extra-slot table 0 nil)
130 (set-char-table-extra-slot table 1 nil)
131 (set-char-table-extra-slot table 2 nil)
132 (modify-syntax-entry c syntax (standard-syntax-table)))
133
134 (provide 'case-table)
135
136 ;;; case-table.el ends here