Mercurial > emacs
annotate lisp/international/iso-insert.el @ 23433:a53274056f20
Fix names of standard-translation-table-for-decode(encode).
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 12 Oct 1998 17:27:23 +0000 |
parents | ac0f6ede7b66 |
children | dae141191c7d |
rev | line source |
---|---|
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
1 ;;; iso-insert.el --- insert functions for ISO 8859/1. |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1987, 1994 Free Software Foundation, Inc. |
845 | 4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
5 ;; Author: Howard Gayle |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
6 ;; Maintainer: FSF |
3012
d4b85bbedee8
Change "i14n" keyword to "i18n".
Jim Blandy <jimb@redhat.com>
parents:
2307
diff
changeset
|
7 ;; Keywords: i18n |
583 | 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:
660
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
583 | 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. | |
583 | 25 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
26 ;;; Commentary: |
583 | 27 |
28 ;; Written by Howard Gayle. See case-table.el for details. | |
29 | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
30 ;;; Code: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
31 |
20101
1920690627a2
Add autoloads for `8859-1-map'.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
32 ;;; Provide some binding for startup: |
1920690627a2
Add autoloads for `8859-1-map'.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
33 ;;;###autoload (define-key global-map "\C-x8" '8859-1-map) |
1920690627a2
Add autoloads for `8859-1-map'.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
34 ;;;###autoload (autoload '8859-1-map "iso-insert" "Keymap for ISO 8859/1 character insertion." t 'keymap) |
1920690627a2
Add autoloads for `8859-1-map'.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
35 |
583 | 36 (defun insert-no-break-space () |
37 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
38 (insert (string 160)) |
583 | 39 ) |
40 | |
41 (defun insert-inverted-exclamation-mark () | |
42 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
43 (insert (string 161)) |
583 | 44 ) |
45 | |
46 (defun insert-cent-sign () | |
47 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
48 (insert (string 162)) |
583 | 49 ) |
50 | |
51 (defun insert-pound-sign () | |
52 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
53 (insert (string 163)) |
583 | 54 ) |
55 | |
56 (defun insert-general-currency-sign () | |
57 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
58 (insert (string 164)) |
583 | 59 ) |
60 | |
61 (defun insert-yen-sign () | |
62 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
63 (insert (string 165)) |
583 | 64 ) |
65 | |
66 (defun insert-broken-vertical-line () | |
67 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
68 (insert (string 166)) |
583 | 69 ) |
70 | |
71 (defun insert-section-sign () | |
72 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
73 (insert (string 167)) |
583 | 74 ) |
75 | |
76 (defun insert-diaeresis () | |
77 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
78 (insert (string 168)) |
583 | 79 ) |
80 | |
81 (defun insert-copyright-sign () | |
82 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
83 (insert (string 169)) |
583 | 84 ) |
85 | |
86 (defun insert-ordinal-indicator-feminine () | |
87 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
88 (insert (string 170)) |
583 | 89 ) |
90 | |
91 (defun insert-angle-quotation-mark-left () | |
92 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
93 (insert (string 171)) |
583 | 94 ) |
95 | |
96 (defun insert-not-sign () | |
97 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
98 (insert (string 172)) |
583 | 99 ) |
100 | |
101 (defun insert-soft-hyphen () | |
102 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
103 (insert (string 173)) |
583 | 104 ) |
105 | |
106 (defun insert-registered-sign () | |
107 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
108 (insert (string 174)) |
583 | 109 ) |
110 | |
111 (defun insert-macron () | |
112 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
113 (insert (string 175)) |
583 | 114 ) |
115 | |
116 (defun insert-degree-sign () | |
117 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
118 (insert (string 176)) |
583 | 119 ) |
120 | |
121 (defun insert-plus-or-minus-sign () | |
122 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
123 (insert (string 177)) |
583 | 124 ) |
125 | |
126 (defun insert-superscript-two () | |
127 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
128 (insert (string 178)) |
583 | 129 ) |
130 | |
131 (defun insert-superscript-three () | |
132 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
133 (insert (string 179)) |
583 | 134 ) |
135 | |
136 (defun insert-acute-accent () | |
137 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
138 (insert (string 180)) |
583 | 139 ) |
140 | |
141 (defun insert-micro-sign () | |
142 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
143 (insert (string 181)) |
583 | 144 ) |
145 | |
146 (defun insert-pilcrow () | |
147 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
148 (insert (string 182)) |
583 | 149 ) |
150 | |
151 (defun insert-middle-dot () | |
152 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
153 (insert (string 183)) |
583 | 154 ) |
155 | |
156 (defun insert-cedilla () | |
157 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
158 (insert (string 184)) |
583 | 159 ) |
160 | |
161 (defun insert-superscript-one () | |
162 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
163 (insert (string 185)) |
583 | 164 ) |
165 | |
166 (defun insert-ordinal-indicator-masculine () | |
167 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
168 (insert (string 186)) |
583 | 169 ) |
170 | |
171 (defun insert-angle-quotation-mark-right () | |
172 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
173 (insert (string 187)) |
583 | 174 ) |
175 | |
176 (defun insert-fraction-one-quarter () | |
177 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
178 (insert (string 188)) |
583 | 179 ) |
180 | |
181 (defun insert-fraction-one-half () | |
182 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
183 (insert (string 189)) |
583 | 184 ) |
185 | |
186 (defun insert-fraction-three-quarters () | |
187 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
188 (insert (string 190)) |
583 | 189 ) |
190 | |
191 (defun insert-inverted-question-mark () | |
192 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
193 (insert (string 191)) |
583 | 194 ) |
195 | |
196 (defun insert-A-grave () | |
197 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
198 (insert (string 192)) |
583 | 199 ) |
200 | |
201 (defun insert-A-acute () | |
202 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
203 (insert (string 193)) |
583 | 204 ) |
205 | |
206 (defun insert-A-circumflex () | |
207 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
208 (insert (string 194)) |
583 | 209 ) |
210 | |
211 (defun insert-A-tilde () | |
212 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
213 (insert (string 195)) |
583 | 214 ) |
215 | |
216 (defun insert-A-umlaut () | |
217 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
218 (insert (string 196)) |
583 | 219 ) |
220 | |
221 (defun insert-A-ring () | |
222 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
223 (insert (string 197)) |
583 | 224 ) |
225 | |
226 (defun insert-AE () | |
227 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
228 (insert (string 198)) |
583 | 229 ) |
230 | |
231 (defun insert-C-cedilla () | |
232 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
233 (insert (string 199)) |
583 | 234 ) |
235 | |
236 (defun insert-E-grave () | |
237 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
238 (insert (string 200)) |
583 | 239 ) |
240 | |
241 (defun insert-E-acute () | |
242 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
243 (insert (string 201)) |
583 | 244 ) |
245 | |
246 (defun insert-E-circumflex () | |
247 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
248 (insert (string 202)) |
583 | 249 ) |
250 | |
251 (defun insert-E-umlaut () | |
252 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
253 (insert (string 203)) |
583 | 254 ) |
255 | |
256 (defun insert-I-grave () | |
257 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
258 (insert (string 204)) |
583 | 259 ) |
260 | |
261 (defun insert-I-acute () | |
262 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
263 (insert (string 205)) |
583 | 264 ) |
265 | |
266 (defun insert-I-circumflex () | |
267 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
268 (insert (string 206)) |
583 | 269 ) |
270 | |
271 (defun insert-I-umlaut () | |
272 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
273 (insert (string 207)) |
583 | 274 ) |
275 | |
276 (defun insert-D-stroke () | |
277 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
278 (insert (string 208)) |
583 | 279 ) |
280 | |
281 (defun insert-N-tilde () | |
282 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
283 (insert (string 209)) |
583 | 284 ) |
285 | |
286 (defun insert-O-grave () | |
287 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
288 (insert (string 210)) |
583 | 289 ) |
290 | |
291 (defun insert-O-acute () | |
292 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
293 (insert (string 211)) |
583 | 294 ) |
295 | |
296 (defun insert-O-circumflex () | |
297 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
298 (insert (string 212)) |
583 | 299 ) |
300 | |
301 (defun insert-O-tilde () | |
302 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
303 (insert (string 213)) |
583 | 304 ) |
305 | |
306 (defun insert-O-umlaut () | |
307 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
308 (insert (string 214)) |
583 | 309 ) |
310 | |
311 (defun insert-multiplication-sign () | |
312 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
313 (insert (string 215)) |
583 | 314 ) |
315 | |
316 (defun insert-O-slash () | |
317 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
318 (insert (string 216)) |
583 | 319 ) |
320 | |
321 (defun insert-U-grave () | |
322 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
323 (insert (string 217)) |
583 | 324 ) |
325 | |
326 (defun insert-U-acute () | |
327 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
328 (insert (string 218)) |
583 | 329 ) |
330 | |
331 (defun insert-U-circumflex () | |
332 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
333 (insert (string 219)) |
583 | 334 ) |
335 | |
336 (defun insert-U-umlaut () | |
337 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
338 (insert (string 220)) |
583 | 339 ) |
340 | |
341 (defun insert-Y-acute () | |
342 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
343 (insert (string 221)) |
583 | 344 ) |
345 | |
346 (defun insert-THORN () | |
347 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
348 (insert (string 222)) |
583 | 349 ) |
350 | |
351 (defun insert-ss () | |
352 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
353 (insert (string 223)) |
583 | 354 ) |
355 | |
356 (defun insert-a-grave () | |
357 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
358 (insert (string 224)) |
583 | 359 ) |
360 | |
361 (defun insert-a-acute () | |
362 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
363 (insert (string 225)) |
583 | 364 ) |
365 | |
366 (defun insert-a-circumflex () | |
367 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
368 (insert (string 226)) |
583 | 369 ) |
370 | |
371 (defun insert-a-tilde () | |
372 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
373 (insert (string 227)) |
583 | 374 ) |
375 | |
376 (defun insert-a-umlaut () | |
377 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
378 (insert (string 228)) |
583 | 379 ) |
380 | |
381 (defun insert-a-ring () | |
382 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
383 (insert (string 229)) |
583 | 384 ) |
385 | |
386 (defun insert-ae () | |
387 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
388 (insert (string 230)) |
583 | 389 ) |
390 | |
391 (defun insert-c-cedilla () | |
392 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
393 (insert (string 231)) |
583 | 394 ) |
395 | |
396 (defun insert-e-grave () | |
397 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
398 (insert (string 232)) |
583 | 399 ) |
400 | |
401 (defun insert-e-acute () | |
402 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
403 (insert (string 233)) |
583 | 404 ) |
405 | |
406 (defun insert-e-circumflex () | |
407 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
408 (insert (string 234)) |
583 | 409 ) |
410 | |
411 (defun insert-e-umlaut () | |
412 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
413 (insert (string 235)) |
583 | 414 ) |
415 | |
416 (defun insert-i-grave () | |
417 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
418 (insert (string 236)) |
583 | 419 ) |
420 | |
421 (defun insert-i-acute () | |
422 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
423 (insert (string 237)) |
583 | 424 ) |
425 | |
426 (defun insert-i-circumflex () | |
427 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
428 (insert (string 238)) |
583 | 429 ) |
430 | |
431 (defun insert-i-umlaut () | |
432 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
433 (insert (string 239)) |
583 | 434 ) |
435 | |
436 (defun insert-d-stroke () | |
437 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
438 (insert (string 240)) |
583 | 439 ) |
440 | |
441 (defun insert-n-tilde () | |
442 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
443 (insert (string 241)) |
583 | 444 ) |
445 | |
446 (defun insert-o-grave () | |
447 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
448 (insert (string 242)) |
583 | 449 ) |
450 | |
451 (defun insert-o-acute () | |
452 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
453 (insert (string 243)) |
583 | 454 ) |
455 | |
456 (defun insert-o-circumflex () | |
457 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
458 (insert (string 244)) |
583 | 459 ) |
460 | |
461 (defun insert-o-tilde () | |
462 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
463 (insert (string 245)) |
583 | 464 ) |
465 | |
466 (defun insert-o-umlaut () | |
467 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
468 (insert (string 246)) |
583 | 469 ) |
470 | |
471 (defun insert-division-sign () | |
472 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
473 (insert (string 247)) |
583 | 474 ) |
475 | |
476 (defun insert-o-slash () | |
477 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
478 (insert (string 248)) |
583 | 479 ) |
480 | |
481 (defun insert-u-grave () | |
482 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
483 (insert (string 249)) |
583 | 484 ) |
485 | |
486 (defun insert-u-acute () | |
487 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
488 (insert (string 250)) |
583 | 489 ) |
490 | |
491 (defun insert-u-circumflex () | |
492 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
493 (insert (string 251)) |
583 | 494 ) |
495 | |
496 (defun insert-u-umlaut () | |
497 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
498 (insert (string 252)) |
583 | 499 ) |
500 | |
501 (defun insert-y-acute () | |
502 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
503 (insert (string 253)) |
583 | 504 ) |
505 | |
506 (defun insert-thorn () | |
507 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
508 (insert (string 254)) |
583 | 509 ) |
510 | |
511 (defun insert-y-umlaut () | |
512 (interactive "*") | |
23189
ac0f6ede7b66
Use `string' before calling `insert'
Karl Heuer <kwzh@gnu.org>
parents:
20101
diff
changeset
|
513 (insert (string 255)) |
583 | 514 ) |
515 | |
516 (defvar 8859-1-map nil "Keymap for ISO 8859/1 character insertion.") | |
517 (if 8859-1-map nil | |
518 (setq 8859-1-map (make-keymap)) | |
519 (define-key 8859-1-map " " 'insert-no-break-space) | |
520 (define-key 8859-1-map "!" 'insert-inverted-exclamation-mark) | |
521 (define-key 8859-1-map "\"" (make-sparse-keymap)) | |
522 (define-key 8859-1-map "\"\"" 'insert-diaeresis) | |
523 (define-key 8859-1-map "\"A" 'insert-A-umlaut) | |
524 (define-key 8859-1-map "\"E" 'insert-E-umlaut) | |
525 (define-key 8859-1-map "\"I" 'insert-I-umlaut) | |
526 (define-key 8859-1-map "\"O" 'insert-O-umlaut) | |
527 (define-key 8859-1-map "\"U" 'insert-U-umlaut) | |
528 (define-key 8859-1-map "\"a" 'insert-a-umlaut) | |
529 (define-key 8859-1-map "\"e" 'insert-e-umlaut) | |
530 (define-key 8859-1-map "\"i" 'insert-i-umlaut) | |
531 (define-key 8859-1-map "\"o" 'insert-o-umlaut) | |
532 (define-key 8859-1-map "\"u" 'insert-u-umlaut) | |
533 (define-key 8859-1-map "\"y" 'insert-y-umlaut) | |
534 (define-key 8859-1-map "'" (make-sparse-keymap)) | |
535 (define-key 8859-1-map "''" 'insert-acute-accent) | |
536 (define-key 8859-1-map "'A" 'insert-A-acute) | |
537 (define-key 8859-1-map "'E" 'insert-E-acute) | |
538 (define-key 8859-1-map "'I" 'insert-I-acute) | |
539 (define-key 8859-1-map "'O" 'insert-O-acute) | |
540 (define-key 8859-1-map "'U" 'insert-U-acute) | |
541 (define-key 8859-1-map "'Y" 'insert-Y-acute) | |
542 (define-key 8859-1-map "'a" 'insert-a-acute) | |
543 (define-key 8859-1-map "'e" 'insert-e-acute) | |
544 (define-key 8859-1-map "'i" 'insert-i-acute) | |
545 (define-key 8859-1-map "'o" 'insert-o-acute) | |
546 (define-key 8859-1-map "'u" 'insert-u-acute) | |
547 (define-key 8859-1-map "'y" 'insert-y-acute) | |
548 (define-key 8859-1-map "$" 'insert-general-currency-sign) | |
549 (define-key 8859-1-map "+" 'insert-plus-or-minus-sign) | |
550 (define-key 8859-1-map "," (make-sparse-keymap)) | |
551 (define-key 8859-1-map ",," 'insert-cedilla) | |
552 (define-key 8859-1-map ",C" 'insert-C-cedilla) | |
553 (define-key 8859-1-map ",c" 'insert-c-cedilla) | |
554 (define-key 8859-1-map "-" 'insert-soft-hyphen) | |
555 (define-key 8859-1-map "." 'insert-middle-dot) | |
556 (define-key 8859-1-map "/" (make-sparse-keymap)) | |
557 (define-key 8859-1-map "//" 'insert-division-sign) | |
558 (define-key 8859-1-map "/O" 'insert-O-slash) | |
559 (define-key 8859-1-map "/o" 'insert-o-slash) | |
560 (define-key 8859-1-map "1" (make-sparse-keymap)) | |
561 (define-key 8859-1-map "1/" (make-sparse-keymap)) | |
562 (define-key 8859-1-map "1/2" 'insert-fraction-one-half) | |
563 (define-key 8859-1-map "1/4" 'insert-fraction-one-quarter) | |
564 (define-key 8859-1-map "3" (make-sparse-keymap)) | |
565 (define-key 8859-1-map "3/" (make-sparse-keymap)) | |
566 (define-key 8859-1-map "3/4" 'insert-fraction-three-quarters) | |
567 (define-key 8859-1-map "<" 'insert-angle-quotation-mark-left) | |
568 (define-key 8859-1-map "=" 'insert-macron) | |
569 (define-key 8859-1-map ">" 'insert-angle-quotation-mark-right) | |
570 (define-key 8859-1-map "?" 'insert-inverted-question-mark) | |
5823
d39903c0763e
Change the sequences aa and ae to just a and e.
Richard M. Stallman <rms@gnu.org>
parents:
3177
diff
changeset
|
571 (define-key 8859-1-map "A" 'insert-A-ring) |
d39903c0763e
Change the sequences aa and ae to just a and e.
Richard M. Stallman <rms@gnu.org>
parents:
3177
diff
changeset
|
572 (define-key 8859-1-map "E" 'insert-AE) |
583 | 573 (define-key 8859-1-map "C" 'insert-copyright-sign) |
574 (define-key 8859-1-map "D" 'insert-D-stroke) | |
575 (define-key 8859-1-map "L" 'insert-pound-sign) | |
576 (define-key 8859-1-map "P" 'insert-pilcrow) | |
577 (define-key 8859-1-map "R" 'insert-registered-sign) | |
578 (define-key 8859-1-map "S" 'insert-section-sign) | |
579 (define-key 8859-1-map "T" 'insert-THORN) | |
580 (define-key 8859-1-map "Y" 'insert-yen-sign) | |
581 (define-key 8859-1-map "^" (make-sparse-keymap)) | |
582 (define-key 8859-1-map "^1" 'insert-superscript-one) | |
583 (define-key 8859-1-map "^2" 'insert-superscript-two) | |
584 (define-key 8859-1-map "^3" 'insert-superscript-three) | |
585 (define-key 8859-1-map "^A" 'insert-A-circumflex) | |
586 (define-key 8859-1-map "^E" 'insert-E-circumflex) | |
587 (define-key 8859-1-map "^I" 'insert-I-circumflex) | |
588 (define-key 8859-1-map "^O" 'insert-O-circumflex) | |
589 (define-key 8859-1-map "^U" 'insert-U-circumflex) | |
590 (define-key 8859-1-map "^a" 'insert-a-circumflex) | |
591 (define-key 8859-1-map "^e" 'insert-e-circumflex) | |
592 (define-key 8859-1-map "^i" 'insert-i-circumflex) | |
593 (define-key 8859-1-map "^o" 'insert-o-circumflex) | |
594 (define-key 8859-1-map "^u" 'insert-u-circumflex) | |
595 (define-key 8859-1-map "_" (make-sparse-keymap)) | |
596 (define-key 8859-1-map "_a" 'insert-ordinal-indicator-feminine) | |
597 (define-key 8859-1-map "_o" 'insert-ordinal-indicator-masculine) | |
598 (define-key 8859-1-map "`" (make-sparse-keymap)) | |
599 (define-key 8859-1-map "`A" 'insert-A-grave) | |
600 (define-key 8859-1-map "`E" 'insert-E-grave) | |
601 (define-key 8859-1-map "`I" 'insert-I-grave) | |
602 (define-key 8859-1-map "`O" 'insert-O-grave) | |
603 (define-key 8859-1-map "`U" 'insert-U-grave) | |
604 (define-key 8859-1-map "`a" 'insert-a-grave) | |
605 (define-key 8859-1-map "`e" 'insert-e-grave) | |
606 (define-key 8859-1-map "`i" 'insert-i-grave) | |
607 (define-key 8859-1-map "`o" 'insert-o-grave) | |
608 (define-key 8859-1-map "`u" 'insert-u-grave) | |
5823
d39903c0763e
Change the sequences aa and ae to just a and e.
Richard M. Stallman <rms@gnu.org>
parents:
3177
diff
changeset
|
609 (define-key 8859-1-map "a" 'insert-a-ring) |
d39903c0763e
Change the sequences aa and ae to just a and e.
Richard M. Stallman <rms@gnu.org>
parents:
3177
diff
changeset
|
610 (define-key 8859-1-map "e" 'insert-ae) |
583 | 611 (define-key 8859-1-map "c" 'insert-cent-sign) |
612 (define-key 8859-1-map "d" 'insert-d-stroke) | |
613 (define-key 8859-1-map "o" 'insert-degree-sign) | |
614 (define-key 8859-1-map "s" 'insert-ss) | |
615 (define-key 8859-1-map "t" 'insert-thorn) | |
616 (define-key 8859-1-map "u" 'insert-micro-sign) | |
617 (define-key 8859-1-map "x" 'insert-multiplication-sign) | |
618 (define-key 8859-1-map "|" 'insert-broken-vertical-line) | |
619 (define-key 8859-1-map "~" (make-sparse-keymap)) | |
620 (define-key 8859-1-map "~A" 'insert-A-tilde) | |
621 (define-key 8859-1-map "~N" 'insert-N-tilde) | |
622 (define-key 8859-1-map "~O" 'insert-O-tilde) | |
623 (define-key 8859-1-map "~a" 'insert-a-tilde) | |
624 (define-key 8859-1-map "~n" 'insert-n-tilde) | |
625 (define-key 8859-1-map "~o" 'insert-o-tilde) | |
626 (define-key 8859-1-map "~~" 'insert-not-sign) | |
627 (if (not (lookup-key global-map "\C-x8")) | |
628 (define-key global-map "\C-x8" 8859-1-map)) | |
629 ) | |
20101
1920690627a2
Add autoloads for `8859-1-map'.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
630 (defalias '8859-1-map 8859-1-map) |
583 | 631 |
3177
2e1b9ebc17ef
Provide same name as file.
Richard M. Stallman <rms@gnu.org>
parents:
3012
diff
changeset
|
632 (provide 'iso-insert) |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
633 |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
634 ;;; iso-insert.el ends here |