]> code.delx.au - gnu-emacs/blobdiff - lisp/international/iso-transl.el
(standard-display-european-internal): Don't fiddle with latin-1 non-break space
[gnu-emacs] / lisp / international / iso-transl.el
index 1008dbd7a7ff8d28cbbbb1e34b2dd2270020d0c5..a071b14b3d291d8735f47e5f04f0efd4cf4781f3 100644 (file)
@@ -1,6 +1,6 @@
-;;; iso-transl.el --- keyboard input definitions for ISO 8859/1.
+;;; iso-transl.el --- keyboard input definitions for ISO 8859-1  -*- coding: iso-8859-1 -*-
 
-;; Copyright (C) 1987, 1993, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1987, 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
 
 ;; Author: Howard Gayle
 ;; Maintainer: FSF
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
 
 ;;; Commentary:
 
-;; Loading this package defines two ways of entering the ISO Latin 1 characters
-;; with codes above 127.
+;; Loading this package defines three ways of entering the non-ASCII
+;; printable characters with codes above 127: the prefix C-x 8, or the
+;; Alt key, or a dead accent key.  For example, you can enter uppercase
+;; A-umlaut as `C-x 8 " A' or `Alt-" A' (if you have an Alt key) or
+;; `umlaut A' (if you have an umlaut/diaeresis key).
 
-;; One way is to type C-x 8 followed by a special chaacter sequence.
-;; For example, C-x 8 " A enters an upper-case A-umlaut.
-
-;; The other way is to type the same special sequence
-;; but hold down Alt for the first character in it.
+;; C-x 8 is set up to autoload this package,
+;; but Alt keys and dead accent keys are only defined
+;; once you have loaded the package.  It is nontrivial
+;; to make all of the Alt keys autoload, and it is not clear
+;; that the dead accent keys SHOULD autoload this package.
 
 ;;; Code:
 
+;;; Provide some binding for startup:
+;;;###autoload (or key-translation-map (setq key-translation-map (make-sparse-keymap)))
+;;;###autoload (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map)
+;;;###autoload (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap)
+
+(defvar iso-transl-dead-key-alist
+  '((?\' . mute-acute)
+    (?\` . mute-grave)
+    (?\" . mute-diaeresis)
+    (?^ . mute-asciicircum)
+    (?\~ . mute-asciitilde)
+    (?\' . dead-acute)
+    (?\` . dead-grave)
+    (?\" . dead-diaeresis)
+    (?^ . dead-asciicircum)
+    (?\~ . dead-asciitilde)
+    (?^ . dead-circum)
+    (?^ . dead-circumflex)
+    (?\~ . dead-tilde)
+    ;; Someone reports that these keys don't work if shifted.
+    ;; This might fix it--no word yet.
+    (?\' . S-dead-acute)
+    (?\` . S-dead-grave)
+    (?\" . S-dead-diaeresis)
+    (?^ . S-dead-asciicircum)
+    (?\~ . S-dead-asciitilde)
+    (?^ . S-dead-circum)
+    (?^ . S-dead-circumflex)
+    (?\~ . S-dead-tilde))
+  "Mapping of ASCII characters to their corresponding dead-key symbols.")
+
+;; The two-character mnemonics are intended to be available in all languages.
+;; The ones beginning with `*' have one-character synonyms, but a
+;; language-specific table might override the short form for its own use.
+
 (defvar iso-transl-char-map
-  '((" "    . [160])
-    ("!"    . [161])
-    ("\"\"" . [168])
-    ("\"A"  . [196])
-    ("\"E"  . [203])
-    ("\"I"  . [207])
-    ("\"O"  . [214])
-    ("\"U"  . [220])
-    ("\"a"  . [228])
-    ("\"e"  . [235])
-    ("\"i"  . [239])
-    ("\"o"  . [246])
-    ("\"u"  . [252])
-    ("\"y"  . [255])
-    ("''"   . [180])
-    ("'A"   . [193])
-    ("'E"   . [201])
-    ("'I"   . [205])
-    ("'O"   . [211])
-    ("'U"   . [218])
-    ("'Y"   . [221])
-    ("'a"   . [225])
-    ("'e"   . [233])
-    ("'i"   . [237])
-    ("'o"   . [243])
-    ("'u"   . [250])
-    ("'y"   . [253])
-    ("$"    . [164])
-    ("+"    . [177])
-    (",,"   . [184])
-    (",C"   . [199])
-    (",c"   . [231])
-    ("-"    . [173])
-    ("."    . [183])
-    ("//"   . [247])
-    ("/O"   . [216])
-    ("/o"   . [248])
-    ("1/2"  . [189])
-    ("1/4"  . [188])
-    ("3/4"  . [190])
-    ("<"    . [171])
-    ("="    . [175])
-    (">"    . [187])
-    ("?"    . [191])
-    ("A"    . [197])
-    ("E"    . [198])
-    ("C"    . [169])
-    ("D"    . [208])
-    ("L"    . [163])
-    ("P"    . [182])
-    ("R"    . [174])
-    ("S"    . [167])
-    ("T"    . [222])
-    ("Y"    . [165])
-    ("^1"   . [185])
-    ("^2"   . [178])
-    ("^3"   . [179])
-    ("^A"   . [194])
-    ("^E"   . [202])
-    ("^I"   . [206])
-    ("^O"   . [212])
-    ("^U"   . [219])
-    ("^a"   . [226])
-    ("^e"   . [234])
-    ("^i"   . [238])
-    ("^o"   . [244])
-    ("^u"   . [251])
-    ("_a"   . [170])
-    ("_o"   . [186])
-    ("`A"   . [192])
-    ("`E"   . [200])
-    ("`I"   . [204])
-    ("`O"   . [210])
-    ("`U"   . [217])
-    ("`a"   . [224])
-    ("`e"   . [232])
-    ("`i"   . [236])
-    ("`o"   . [242])
-    ("`u"   . [249])
-    ("a"    . [229])
-    ("e"    . [230])
-    ("c"    . [162])
-    ("d"    . [240])
-    ("o"    . [176])
-    ("s"    . [223])
-    ("t"    . [254])
-    ("u"    . [181])
-    ("x"    . [215])
-    ("|"    . [166])
-    ("~A"   . [195])
-    ("~N"   . [209])
-    ("~O"   . [213])
-    ("~a"   . [227])
-    ("~n"   . [241])
-    ("~o"   . [245])
-    ("~~"   . [172]))
+  '(("* "   . [? ])
+    (" "    . [? ])
+    ("*!"   . [?¡])
+    ("!"    . [?¡])
+    ("\"\"" . [?¨])
+    ("\"A"  . [?Ä])
+    ("\"E"  . [?Ë])
+    ("\"I"  . [?Ï])
+    ("\"O"  . [?Ö])
+    ("\"U"  . [?Ü])
+    ("\"a"  . [?ä])
+    ("\"e"  . [?ë])
+    ("\"i"  . [?ï])
+    ("\"o"  . [?ö])
+    ("\"s"  . [?ß])
+    ("\"u"  . [?ü])
+    ("\"y"  . [?ÿ])
+    ("''"   . [?´])
+    ("'A"   . [?Á])
+    ("'E"   . [?É])
+    ("'I"   . [?Í])
+    ("'O"   . [?Ó])
+    ("'U"   . [?Ú])
+    ("'Y"   . [?Ý])
+    ("'a"   . [?á])
+    ("'e"   . [?é])
+    ("'i"   . [?í])
+    ("'o"   . [?ó])
+    ("'u"   . [?ú])
+    ("'y"   . [?ý])
+    ("*$"   . [?¤])
+    ("$"    . [?¤])
+    ("*+"   . [?±])
+    ("+"    . [?±])
+    (",,"   . [?¸])
+    (",C"   . [?Ç])
+    (",c"   . [?ç])
+    ("*-"   . [?­])
+    ("-"    . [?­])
+    ("*."   . [?·])
+    ("."    . [?·])
+    ("//"   . [?÷])
+    ("/A"   . [?Å])
+    ("/E"   . [?Æ])
+    ("/O"   . [?Ø])
+    ("/a"   . [?å])
+    ("/e"   . [?æ])
+    ("/o"   . [?ø])
+    ("1/2"  . [?½])
+    ("1/4"  . [?¼])
+    ("3/4"  . [?¾])
+    ("*<"   . [?«])
+    ("<"    . [?«])
+    ("*="   . [?¯])
+    ("="    . [?¯])
+    ("*>"   . [?»])
+    (">"    . [?»])
+    ("*?"   . [?¿])
+    ("?"    . [?¿])
+    ("*C"   . [?©])
+    ("C"    . [?©])
+    ("*L"   . [?£])
+    ("L"    . [?£])
+    ("*P"   . [?¶])
+    ("P"    . [?¶])
+    ("*R"   . [?®])
+    ("R"    . [?®])
+    ("*S"   . [?§])
+    ("S"    . [?§])
+    ("*Y"   . [?¥])
+    ("Y"    . [?¥])
+    ("^1"   . [?¹])
+    ("^2"   . [?²])
+    ("^3"   . [?³])
+    ("^A"   . [?Â])
+    ("^E"   . [?Ê])
+    ("^I"   . [?Î])
+    ("^O"   . [?Ô])
+    ("^U"   . [?Û])
+    ("^a"   . [?â])
+    ("^e"   . [?ê])
+    ("^i"   . [?î])
+    ("^o"   . [?ô])
+    ("^u"   . [?û])
+    ("_a"   . [?ª])
+    ("_o"   . [?º])
+    ("`A"   . [?À])
+    ("`E"   . [?È])
+    ("`I"   . [?Ì])
+    ("`O"   . [?Ò])
+    ("`U"   . [?Ù])
+    ("`a"   . [?à])
+    ("`e"   . [?è])
+    ("`i"   . [?ì])
+    ("`o"   . [?ò])
+    ("`u"   . [?ù])
+    ("*c"   . [?¢])
+    ("c"    . [?¢])
+    ("*o"   . [?°])
+    ("o"    . [?°])
+    ("*u"   . [?µ])
+    ("u"    . [?µ])
+    ("*m"   . [?µ])
+    ("m"    . [?µ])
+    ("*x"   . [?×])
+    ("x"    . [?×])
+    ("*|"   . [?¦])
+    ("|"    . [?¦])
+    ("~A"   . [?Ã])
+    ("~D"   . [?Ð])
+    ("~N"   . [?Ñ])
+    ("~O"   . [?Õ])
+    ("~T"   . [?Þ])
+    ("~a"   . [?ã])
+    ("~d"   . [?ð])
+    ("~n"   . [?ñ])
+    ("~o"   . [?õ])
+    ("~t"   . [?þ])
+    ("~~"   . [?¬])
+    ("' "   . "'")
+    ("` "   . "`")
+    ("\" "  . "\"")
+    ("^ "   . "^")
+    ("~ "   . "~"))
   "Alist of character translations for entering ISO characters.
 Each element has the form (STRING . VECTOR).
 The sequence STRING of ASCII chars translates into the
 sequence VECTOR.  (VECTOR is normally one character long.)")
 
+;; Language-specific translation lists.
+(defvar iso-transl-language-alist
+  '(("Esperanto"
+     ("C"  . [?Æ])
+     ("G"  . [?Ø])
+     ("H"  . [?¦])
+     ("J"  . [?¬])
+     ("S"  . [?Þ])
+     ("U"  . [?Ý])
+     ("c"  . [?æ])
+     ("g"  . [?ø])
+     ("h"  . [?¶])
+     ("j"  . [?¼])
+     ("s"  . [?þ])
+     ("u"  . [?ý]))
+    ("French"
+     ("C"  . [?Ç])
+     ("c"  . [?ç]))
+    ("German"
+     ("A"  . [?Ä])
+     ("O"  . [?Ö])
+     ("U"  . [?Ü])
+     ("a"  . [?ä])
+     ("o"  . [?ö])
+     ("s"  . [?ß])
+     ("u"  . [?ü]))
+    ("Portuguese"
+     ("C"  . [?Ç])
+     ("c"  . [?ç]))
+    ("Spanish"
+     ("!"  . [?¡])
+     ("?"  . [?¿])
+     ("N"  . [?Ñ])
+     ("n"  . [?ñ]))))
+
+(defvar iso-transl-ctl-x-8-map nil
+  "Keymap for C-x 8 prefix.")
+(or iso-transl-ctl-x-8-map
+    (fset 'iso-transl-ctl-x-8-map
+         (setq iso-transl-ctl-x-8-map (make-sparse-keymap))))
+(or key-translation-map
+    (setq key-translation-map (make-sparse-keymap)))
+(define-key key-translation-map "\C-x8" iso-transl-ctl-x-8-map)
+
+;; For each entry in the alist, we'll make up to three ways to generate
+;; the character in question: the prefix `C-x 8'; the ALT modifier on
+;; the first key of the sequence; and (if applicable) replacing the first
+;; key of the sequence with the corresponding dead key.  For example, a
+;; character associated with the string "~n" can be input with `C-x 8 ~ n'
+;; or `Alt-~ n' or `mute-asciitilde n'.
+(defun iso-transl-define-keys (alist)
+  (while alist
+    (let ((translated-vec (cdr (car alist))))
+      (define-key iso-transl-ctl-x-8-map (car (car alist)) translated-vec)
+      (let ((inchar (aref (car (car alist)) 0))
+           (vec (vconcat (car (car alist))))
+           (tail iso-transl-dead-key-alist))
+       (aset vec 0 (logior (aref vec 0) ?\A-\^@))
+       (define-key key-translation-map vec translated-vec)
+       (define-key isearch-mode-map (vector (aref vec 0)) nil)
+       (while tail
+         (if (eq (car (car tail)) inchar)
+             (let ((deadvec (copy-sequence vec))
+                   (deadkey (cdr (car tail))))
+               (aset deadvec 0 deadkey)
+               (define-key isearch-mode-map (vector deadkey) nil)
+               (define-key key-translation-map deadvec translated-vec)))
+         (setq tail (cdr tail)))))
+    (setq alist (cdr alist))))
+
+(defun iso-transl-set-language (lang)
+  (interactive (list (let ((completion-ignore-case t))
+                      (completing-read "Set which language? "
+                                       iso-transl-language-alist nil t))))
+  (iso-transl-define-keys (cdr (assoc lang iso-transl-language-alist))))
+
+
+;; The standard mapping comes automatically.  You can partially overlay it
+;; with a language-specific mapping by using `M-x iso-transl-set-language'.
+(iso-transl-define-keys iso-transl-char-map)
+
+(define-key isearch-mode-map "\C-x" nil)
+(define-key isearch-mode-map [?\C-x t] 'isearch-other-control-char)
+(define-key isearch-mode-map "\C-x8" nil)
 
-(let ((map (make-sparse-keymap))
-      table)
-  (setq table iso-transl-char-map)
-;;;  ;; Create all the prefixes we need.
-;;;  (define-key map "\""   (make-sparse-keymap))
-;;;  (define-key map "'"    (make-sparse-keymap))
-;;;  (define-key map ","    (make-sparse-keymap))
-;;;  (define-key map "/"    (make-sparse-keymap))
-;;;  (define-key map "1"    (make-sparse-keymap))
-;;;  (define-key map "1/"   (make-sparse-keymap))
-;;;  (define-key map "3"    (make-sparse-keymap))
-;;;  (define-key map "3/"   (make-sparse-keymap))
-;;;  (define-key map "A"    (make-sparse-keymap))
-;;;  (define-key map "^"    (make-sparse-keymap))
-;;;  (define-key map "_"    (make-sparse-keymap))
-;;;  (define-key map "`"    (make-sparse-keymap))
-;;;  (define-key map "a"    (make-sparse-keymap))
-;;;  (define-key map "~"    (make-sparse-keymap))
-
-  ;; Enter the individual sequences.
-  (setq table iso-transl-char-map)
-  (while table
-    (define-key map (car (car table)) (cdr (car table)))
-    (setq table (cdr table)))
-
-  (or key-translation-map
-      (setq key-translation-map (make-sparse-keymap)))
-  (define-key key-translation-map "\C-x8" map)
-
-  ;; Enter the individual sequences, this time with Alt as a modifier
-  ;; on the first character, instead of with C-x 8 as a prefix.
-  (setq table iso-transl-char-map)
-  (while table
-    (let ((string (vconcat (car (car table)))))
-      (aset string 0 (+ (aref string 0) 262144))
-      (define-key key-translation-map string (cdr (car table))))
-    (setq table (cdr table)))
-
-  (define-key isearch-mode-map "\C-x" nil)
-  (define-key isearch-mode-map [?\C-x t] 'isearch-other-control-char)
-  (define-key isearch-mode-map "\C-x8" nil))
 
 (provide 'iso-transl)
 
+;;; arch-tag: 034cfedf-7ebd-461d-bcd0-5c79e6dc0b61
 ;;; iso-transl.el ends here