Mercurial > emacs
annotate lisp/international/iso-acc.el @ 15400:64095f6a315c
No need to require 'faces and set menu-bar-mode.
(window-frame): Remove; it is now on `frame.c'.
(raise-frame, select-frame): Likewise.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 10 Jun 1996 21:21:35 +0000 |
parents | bd56cdc4d07b |
children | 8c89a87a6341 |
rev | line source |
---|---|
15261 | 1 ;;; iso-acc.el --- minor mode providing electric accent keys |
14169 | 2 |
14734 | 3 ;; Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc. |
4720 | 4 |
5 ;; Author: Johan Vromans <jv@mh.nl> | |
5040
34ce5cc32eb8
(iso-accents-list): Added /A for A-with-ring
Richard M. Stallman <rms@gnu.org>
parents:
4924
diff
changeset
|
6 ;; Version: 1.7 (modified) |
4921
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
7 ;; Maintainer: FSF |
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
8 ;; Keywords: i18n |
4720 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
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 | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
4720 | 26 |
27 ;;; Commentary: | |
28 | |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
29 ;; Function `iso-accents-mode' activates a minor mode in which |
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
30 ;; typewriter "dead keys" are emulated. The purpose of this emulation |
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
31 ;; is to provide a simple means for inserting accented characters |
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
32 ;; according to the ISO-8859-1 character set. |
4720 | 33 ;; |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
34 ;; In `iso-accents-mode', pseudo accent characters are used to |
10599
bbf3a30a4d39
(iso-accents-list): Add Icelandic thorn.
Karl Heuer <kwzh@gnu.org>
parents:
9740
diff
changeset
|
35 ;; introduce accented keys. The pseudo-accent characters are: |
4720 | 36 ;; |
37 ;; ' (minute) -> grave accent | |
38 ;; ` (backtick) -> acute accent | |
39 ;; " (second) -> diaeresis | |
4921
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
40 ;; ^ (caret) -> circumflex |
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
41 ;; ~ (tilde) -> tilde over the character |
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
42 ;; / (slash) -> slash through the character. |
5040
34ce5cc32eb8
(iso-accents-list): Added /A for A-with-ring
Richard M. Stallman <rms@gnu.org>
parents:
4924
diff
changeset
|
43 ;; Also: /A is A-with-ring and /E is AE ligature. |
4720 | 44 ;; |
45 ;; The action taken depends on the key that follows the pseudo accent. | |
46 ;; In general: | |
47 ;; | |
48 ;; pseudo-accent + appropriate letter -> accented letter | |
49 ;; pseudo-accent + space -> pseudo-accent | |
50 ;; pseudo-accent + pseudo-accent -> accent (if available) | |
51 ;; pseudo-accent + other -> pseudo-accent + other | |
52 ;; | |
53 ;; If the pseudo-accent is followed by anything else than a | |
54 ;; self-insert-command, the dead-key code is terminated, the | |
55 ;; pseudo-accent inserted 'as is' and the bell is rung to signal this. | |
56 ;; | |
4721
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
57 ;; Function `iso-accents-mode' can be used to enable the iso accents |
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
58 ;; minor mode, or disable it. |
5101
c95efc1cf15b
(iso-accents-enable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5060
diff
changeset
|
59 |
c95efc1cf15b
(iso-accents-enable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5060
diff
changeset
|
60 ;; If you want only some of these characters to serve as accents, |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
61 ;; add a language to `iso-languages' which specifies the accent characters |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
62 ;; that you want, then select the language with `iso-accents-customize'. |
4720 | 63 |
64 ;;; Code: | |
65 | |
66 (provide 'iso-acc) | |
67 | |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
68 (defvar iso-languages |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
69 '(("portuguese" |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
70 (?' (?A . ?\301) (?E . ?\311) (?I . ?\315) (?O . ?\323) (?U . ?\332) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
71 (?C . ?\307) (?a . ?\341) (?e . ?\351) (?i . ?\355) (?o . ?\363) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
72 (?u . ?\372) (?c . ?\347) (?\ . ?')) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
73 (?` (?A . ?\300) (?a . ?\340) (?\ . ?`)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
74 (?^ (?A . ?\302) (?E . ?\312) (?O . ?\324) (?a . ?\342) (?e . ?\352) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
75 (?o . ?\364) (?\ . ?^)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
76 (?\" (?U . ?\334) (?u . ?\374) (?\ . ?\")) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
77 (?\~ (?A . ?\303) (?O . ?\325) (?a . ?\343) (?o . ?\365) (?\ . ?\~))) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
78 |
13820
8d33da3d3899
(iso-languages): Add entry for `irish'.
Richard M. Stallman <rms@gnu.org>
parents:
13800
diff
changeset
|
79 ("irish" |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
80 (?' (?A . ?\301) (?E . ?\311) (?I . ?\315) (?O . ?\323) (?U . ?\332) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
81 (?a . ?\341) (?e . ?\351) (?i . ?\355) (?o . ?\363) (?u . ?\372) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
82 (?\ . ?'))) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
83 |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
84 ("french" |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
85 (?' (?A . ?\301) (?E . ?\311) (?I . ?\315) (?O . ?\323) (?U . ?\332) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
86 (?C . ?\307) (?a . ?\341) (?e . ?\351) (?i . ?\355) (?o . ?\363) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
87 (?u . ?\372) (?c . ?\347) (?\ . ?')) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
88 (?` (?A . ?\300) (?E . ?\310) (?a . ?\340) (?e . ?\350) (?\ . ?`)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
89 (?^ (?A . ?\302) (?E . ?\312) (?I . ?\316) (?O . ?\324) (?U . ?\333) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
90 (?a . ?\342) (?e . ?\352) (?i . ?\356) (?o . ?\364) (?u . ?\373) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
91 (?\ . ?^)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
92 (?\" (?U . ?\334) (?u . ?\374) (?\ . ?\")) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
93 (?\~ (?A . ?\303) (?O . ?\325) (?a . ?\343) (?o . ?\365) (?\ . ?\~))) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
94 |
14289
5ef14e01a330
(iso-accents-customize): Extract accent chars
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
95 ("latin-2" |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
96 (?' (?A . ?\301) (?C . ?\306) (?D . ?\320) (?E . ?\311) (?I . ?\315) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
97 (?L . ?\305) (?N . ?\321) (?O . ?\323) (?R . ?\300) (?S . ?\246) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
98 (?U . ?\332) (?Y . ?\335) (?Z . ?\254) (?a . ?\341) (?c . ?\346) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
99 (?d . ?\360) (?e . ?\351) (?i . ?\355) (?l . ?\345) (?n . ?\361) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
100 (?o . ?\363) (?r . ?\340) (?s . ?\266) (?u . ?\372) (?y . ?\375) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
101 (?z . ?\274) (?' . ?\264) (?\ . ?')) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
102 (?` (?A . ?\241) (?C . ?\307) (?E . ?\312) (?L . ?\243) (?S . ?\252) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
103 (?T . ?\336) (?Z . ?\257) (?a . ?\261) (?l . ?\263) (?c . ?\347) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
104 (?e . ?\352) (?s . ?\272) (?t . ?\376) (?z . ?\277) (?` . ?\252) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
105 (?. . ?\377) (?\ . ?`)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
106 (?^ (?A . ?\302) (?O . ?\324) (?a . ?\342) (?o . ?\364) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
107 (?^ . ?^) ; no special code? |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
108 (?\ . ?^)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
109 (?\" (?A . ?\304) (?E . ?\313) (?O . ?\326) (?U . ?\334) (?a . ?\344) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
110 (?e . ?\353) (?o . ?\366) (?s . ?\337) (?u . ?\374) (?\" . ?\250) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
111 (?\ . ?\")) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
112 (?\~ (?A . ?\303) (?C . ?\310) (?D . ?\317) (?L . ?\245) (?N . ?\322) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
113 (?O . ?\325) (?R . ?\330) (?S . ?\251) (?T . ?\253) (?U . ?\333) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
114 (?Z . ?\256) (?a . ?\323) (?c . ?\350) (?d . ?\357) (?l . ?\265) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
115 (?n . ?\362) (?o . ?\365) (?r . ?\370) (?s . ?\271) (?t . ?\273) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
116 (?u . ?\373) (?z . ?\276) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
117 (?v . ?\242) ; v accent |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
118 (?\~ . ?\242) ; v accent |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
119 (?\. . ?\270) ; cedilla accent |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
120 (?\ . ?\~))) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
121 |
14289
5ef14e01a330
(iso-accents-customize): Extract accent chars
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
122 ("latin-1" |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
123 (?' (?A . ?\301) (?E . ?\311) (?I . ?\315) (?O . ?\323) (?U . ?\332) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
124 (?Y . ?\335) (?a . ?\341) (?e . ?\351) (?i . ?\355) (?o . ?\363) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
125 (?u . ?\372) (?y . ?\375) (?' . ?\264) (?\ . ?')) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
126 (?` (?A . ?\300) (?E . ?\310) (?I . ?\314) (?O . ?\322) (?U . ?\331) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
127 (?a . ?\340) (?e . ?\350) (?i . ?\354) (?o . ?\362) (?u . ?\371) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
128 (?` . ?`) (?\ . ?`)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
129 (?^ (?A . ?\302) (?E . ?\312) (?I . ?\316) (?O . ?\324) (?U . ?\333) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
130 (?a . ?\342) (?e . ?\352) (?i . ?\356) (?o . ?\364) (?u . ?\373) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
131 (?^ . ?^) (?\ . ?^)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
132 (?\" (?A . ?\304) (?E . ?\313) (?I . ?\317) (?O . ?\326) (?U . ?\334) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
133 (?a . ?\344) (?e . ?\353) (?i . ?\357) (?o . ?\366) (?s . ?\337) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
134 (?u . ?\374) (?y . ?\377) (?\" . ?\250) (?\ . ?\")) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
135 (?\~ (?A . ?\303) (?C . ?\307) (?D . ?\320) (?N . ?\321) (?O . ?\325) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
136 (?T . ?\336) (?a . ?\343) (?c . ?\347) (?d . ?\360) (?n . ?\361) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
137 (?o . ?\365) (?t . ?\376) (?> . ?\273) (?< . ?\253) (?\~ . ?\270) |
14720
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
138 (?! . ?\241) (?? . ?\277) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
139 (?\ . ?\~)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
140 (?\/ (?A . ?\305) (?E . ?\306) (?O . ?\330) (?a . ?\345) (?e . ?\346) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
141 (?o . ?\370) (?\/ . ?\260) (?\ . ?\/)))) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
142 "List of language-specific customizations for the ISO Accents mode. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
143 |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
144 Each element of the list is of the form |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
145 |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
146 (LANGUAGE |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
147 (PSEUDO-ACCENT MAPPINGS) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
148 (PSEUDO-ACCENT MAPPINGS) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
149 ...) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
150 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
151 LANGUAGE is a string naming the language. |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
152 PSEUDO-ACCENT is a char specifying an accent key. |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
153 MAPPINGS are cons cells of the form (CHAR . ISO-CHAR). |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
154 |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
155 The net effect is that the key sequence PSEUDO-ACCENT CHAR is mapped |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
156 to ISO-CHAR on input.") |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
157 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
158 (defvar iso-language nil |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
159 "Language for which ISO Accents mode is currently customized. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
160 Change it with the `iso-accents-customize' function.") |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
161 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
162 (defvar iso-accents-list nil |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
163 "Association list for ISO accent combinations, for the chosen language.") |
4720 | 164 |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
165 (defvar iso-accents-mode nil |
4924
fb527936ca61
(iso-accents-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4922
diff
changeset
|
166 "*Non-nil enables ISO Accents mode. |
4733
4d378f483cf4
Set up keymap at load time.
Richard M. Stallman <rms@gnu.org>
parents:
4721
diff
changeset
|
167 Setting this variable makes it local to the current buffer. |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
168 See the function `iso-accents-mode'.") |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
169 (make-variable-buffer-local 'iso-accents-mode) |
4720 | 170 |
14115
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
171 (defvar iso-accents-enable '(?' ?` ?^ ?\" ?~ ?/) |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
172 "*List of accent keys that become prefixes in ISO Accents mode. |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
173 The default is (?' ?` ?^ ?\" ?~ ?/), which contains all the supported |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
174 accent keys. If you set this variable to a list in which some of those |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
175 characters are missing, the missing ones do not act as accents. |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
176 |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
177 Note that if you specify a language with `iso-accents-customize', |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
178 that can also turn off certain prefixes (whichever ones are not needed in |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
179 the language you choose).") |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
180 |
4877
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
181 (defun iso-accents-accent-key (prompt) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
182 "Modify the following character by adding an accent to it." |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
183 ;; Pick up the accent character. |
14115
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
184 (if (and iso-accents-mode |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
185 (memq last-input-char iso-accents-enable)) |
4877
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
186 (iso-accents-compose prompt) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
187 (char-to-string last-input-char))) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
188 |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
189 (defun iso-accents-compose (prompt) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
190 (let* ((first-char last-input-char) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
191 (list (assq first-char iso-accents-list)) |
4877
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
192 ;; Wait for the second key and look up the combination. |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
193 (second-char (if (or prompt |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
194 (not (eq (key-binding "a") |
13136
b37ba01d6e27
Fix typo calling iso-accents-customize.
Richard M. Stallman <rms@gnu.org>
parents:
12728
diff
changeset
|
195 'self-insert-command)) |
15167
d9e712c9cc68
(iso-accents-compose): Don't insert in the buffer
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
196 ;; Not at start of a key sequence. |
d9e712c9cc68
(iso-accents-compose): Don't insert in the buffer
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
197 (> (length (this-single-command-keys)) 1) |
13136
b37ba01d6e27
Fix typo calling iso-accents-customize.
Richard M. Stallman <rms@gnu.org>
parents:
12728
diff
changeset
|
198 ;; Called from anything but the command loop. |
b37ba01d6e27
Fix typo calling iso-accents-customize.
Richard M. Stallman <rms@gnu.org>
parents:
12728
diff
changeset
|
199 this-command) |
4877
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
200 (progn |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
201 (message "%s%c" |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
202 (or prompt "Compose with ") |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
203 first-char) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
204 (read-event)) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
205 (insert first-char) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
206 (prog1 (read-event) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
207 (delete-region (1- (point)) (point))))) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
208 (entry (cdr (assq second-char list)))) |
4877
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
209 (if entry |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
210 ;; Found it: return the mapped char |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
211 (vector entry) |
4877
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
212 ;; Otherwise, advance and schedule the second key for execution. |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
213 (setq unread-command-events (list second-char)) |
4c51d8a8b09f
Define "dead keys" in key-translation-map, not in global-map.
Richard M. Stallman <rms@gnu.org>
parents:
4734
diff
changeset
|
214 (vector first-char)))) |
4733
4d378f483cf4
Set up keymap at load time.
Richard M. Stallman <rms@gnu.org>
parents:
4721
diff
changeset
|
215 |
4720 | 216 ;; It is a matter of taste if you want the minor mode indicated |
217 ;; in the mode line... | |
4733
4d378f483cf4
Set up keymap at load time.
Richard M. Stallman <rms@gnu.org>
parents:
4721
diff
changeset
|
218 ;; If so, uncomment the next four lines. |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
219 ;; (or (assq 'iso-accents-mode minor-mode-map-alist) |
4720 | 220 ;; (setq minor-mode-alist |
221 ;; (append minor-mode-alist | |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
222 ;; '((iso-accents-mode " ISO-Acc"))))) |
4720 | 223 |
224 ;;;###autoload | |
4721
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
225 (defun iso-accents-mode (&optional arg) |
4924
fb527936ca61
(iso-accents-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4922
diff
changeset
|
226 "Toggle ISO Accents mode, in which accents modify the following letter. |
4721
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
227 This permits easy insertion of accented characters according to ISO-8859-1. |
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
228 When Iso-accents mode is enabled, accent character keys |
4921
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
229 \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following |
4721
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
230 letter key so that it inserts an ISO accented letter. |
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
231 |
13800 | 232 You can customize ISO Accents mode to a particular language |
233 with the command `iso-accents-customize'. | |
5101
c95efc1cf15b
(iso-accents-enable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5060
diff
changeset
|
234 |
4921
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
235 Special combinations: ~c gives a c with cedilla, |
10599
bbf3a30a4d39
(iso-accents-list): Add Icelandic thorn.
Karl Heuer <kwzh@gnu.org>
parents:
9740
diff
changeset
|
236 ~d gives an Icelandic eth (d with dash). |
bbf3a30a4d39
(iso-accents-list): Add Icelandic thorn.
Karl Heuer <kwzh@gnu.org>
parents:
9740
diff
changeset
|
237 ~t gives an Icelandic thorn. |
5060
0f70551a445a
(iso-accents-list): Add "s.
Richard M. Stallman <rms@gnu.org>
parents:
5059
diff
changeset
|
238 \"s gives German sharp s. |
0f70551a445a
(iso-accents-list): Add "s.
Richard M. Stallman <rms@gnu.org>
parents:
5059
diff
changeset
|
239 /a gives a with ring. |
0f70551a445a
(iso-accents-list): Add "s.
Richard M. Stallman <rms@gnu.org>
parents:
5059
diff
changeset
|
240 /e gives an a-e ligature. |
13992 | 241 ~< and ~> give guillemots. |
11642
ffbb4fa31092
(iso-accents-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11523
diff
changeset
|
242 ~! gives an inverted exclamation mark. |
ffbb4fa31092
(iso-accents-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11523
diff
changeset
|
243 ~? gives an inverted question mark. |
4921
e96cc77d9a7c
Support ~ and /. Support 'Y, 'y, "y.
Richard M. Stallman <rms@gnu.org>
parents:
4877
diff
changeset
|
244 |
5101
c95efc1cf15b
(iso-accents-enable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5060
diff
changeset
|
245 With an argument, a positive argument enables ISO Accents mode, |
4721
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
246 and a negative argument disables it." |
4720 | 247 |
248 (interactive "P") | |
249 | |
4721
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
250 (if (if arg |
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
251 ;; Negative arg means switch it off. |
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
252 (<= (prefix-numeric-value arg) 0) |
d34c02ddea9f
Fix lots of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
4720
diff
changeset
|
253 ;; No arg means toggle. |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
254 iso-accents-mode) |
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
255 (setq iso-accents-mode nil) |
4720 | 256 |
257 ;; Enable electric accents. | |
9740
ba689bf126fb
(iso-accents-mode): Variable renamed from iso-accents-minor-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
258 (setq iso-accents-mode t))) |
4720 | 259 |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
260 (defun iso-accents-customize (language) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
261 "Customize the ISO accents machinery for a particular language. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
262 It selects the customization based on the specifications in the |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
263 `iso-languages' variable." |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
264 (interactive (list (completing-read "Language: " iso-languages nil t))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
265 (let ((table (assoc language iso-languages)) |
14115
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
266 all-accents tail) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
267 (if (not table) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
268 (error "Unknown language '%s'" language) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
269 (setq iso-language language |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
270 iso-accents-list (cdr table)) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
271 (if key-translation-map |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
272 (substitute-key-definition |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
273 'iso-accents-accent-key nil key-translation-map) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
274 (setq key-translation-map (make-sparse-keymap))) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
275 ;; Set up translations for all the characters that are used as |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
276 ;; accent prefixes in this language. |
14115
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
277 (setq tail iso-accents-list) |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
278 (while tail |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
279 (define-key key-translation-map (vector (car (car tail))) |
14115
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
280 'iso-accents-accent-key) |
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
281 (setq tail (cdr tail)))))) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
282 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
283 (defun iso-accentuate (start end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
284 "Convert two-character sequences in region into accented characters. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
285 Noninteractively, this operates on text from START to END. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
286 This uses the same conversion that ISO Accents mode uses for type-in." |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
287 (interactive "r") |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
288 (save-excursion |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
289 (save-restriction |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
290 (narrow-to-region start end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
291 (goto-char start) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
292 (forward-char 1) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
293 (let (entry) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
294 (while (< (point) end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
295 (if (and (memq (preceding-char) iso-accents-enable) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
296 (setq entry (cdr (assq (following-char) (assq (preceding-char) iso-accents-list))))) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
297 (progn |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
298 (forward-char -1) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
299 (delete-char 2) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
300 (insert entry) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
301 (setq end (1- end))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
302 (forward-char 1))))))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
303 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
304 (defun iso-accent-rassoc-unit (value alist) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
305 (let (elt acc) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
306 (while (and alist (not elt)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
307 (setq acc (car (car alist)) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
308 elt (car (rassq value (cdr (car alist)))) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
309 alist (cdr alist))) |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
310 (if elt |
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
311 (cons acc elt)))) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
312 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
313 (defun iso-unaccentuate (start end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
314 "Convert accented characters in the region into two-character sequences. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
315 Noninteractively, this operates on text from START to END. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
316 This uses the opposite of the conversion done by ISO Accents mode for type-in." |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
317 (interactive "r") |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
318 (save-excursion |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
319 (save-restriction |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
320 (narrow-to-region start end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
321 (goto-char start) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
322 (let (entry) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
323 (while (< (point) end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
324 (if (and (> (following-char) 127) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
325 (setq entry (iso-accent-rassoc-unit (following-char) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
326 iso-accents-list))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
327 (progn |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
328 (delete-char 1) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
329 (insert (car entry) (cdr entry)) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
330 (setq end (1+ end))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
331 (forward-char 1))))))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
332 |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
333 (defun iso-deaccentuate (start end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
334 "Convert accented characters in the region into unaccented characters. |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
335 Noninteractively, this operates on text from START to END." |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
336 (interactive "r") |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
337 (save-excursion |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
338 (save-restriction |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
339 (narrow-to-region start end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
340 (goto-char start) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
341 (let (entry) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
342 (while (< (point) end) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
343 (if (and (> (following-char) 127) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
344 (setq entry (iso-accent-rassoc-unit (following-char) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
345 iso-accents-list))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
346 (progn |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
347 (delete-char 1) |
14358
55e1bf4d743a
(iso-languages): Restructure the list to remove
Richard M. Stallman <rms@gnu.org>
parents:
14289
diff
changeset
|
348 (insert (cdr entry))) |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
349 (forward-char 1))))))) |
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
350 |
14115
bc30354daf1f
(iso-accents-accent-key): Check iso-accents-enable here.
Karl Heuer <kwzh@gnu.org>
parents:
13992
diff
changeset
|
351 ;; Set up the default settings. |
14289
5ef14e01a330
(iso-accents-customize): Extract accent chars
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
352 (iso-accents-customize "latin-1") |
12728
abe3fc783a45
Major additions by Gustavo Chaves.
Richard M. Stallman <rms@gnu.org>
parents:
11642
diff
changeset
|
353 |
14720
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
354 ;; Use Iso-Accents mode in the minibuffer |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
355 ;; if it was in use in the previous buffer. |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
356 (defun iso-acc-minibuf-setup () |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
357 (setq iso-accents-mode |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
358 (save-excursion |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
359 (set-buffer (window-buffer minibuffer-scroll-window)) |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
360 iso-accents-mode))) |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
361 |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
362 (add-hook 'minibuf-setup-hook 'iso-acc-minibuf-setup) |
52a6ccf7c0a8
(iso-languages): Add ~? and ~!.
Richard M. Stallman <rms@gnu.org>
parents:
14358
diff
changeset
|
363 |
4720 | 364 ;;; iso-acc.el ends here |