1 ;;; iso02-acc.el --- electric accent keys for Eastern Europe (ISO latin2)
3 ;; Copyright (C) 1995 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
24 (defvar iso-accents-list
75 ((?^ ?^
) ?^
) ; no special code?
110 ((?\~ ?v
) ?
\242) ;; v accent
111 ((?\~ ?\~
) ?
\242) ;; v accent
112 ((?\~ ?\.
) ?
\270) ;; cedilla accent
114 "Association list for ISO latin-2 accent combinations.")
116 (defvar iso-accents-enable
'(?
' ?
` ?^ ?
\" ?~
)
117 "*List of accent keys that become prefixes in ISO Accents mode.
118 The default is (?' ?` ?^ ?\" ?~), which contains all the supported
119 accent keys. For certain languages, you might want to remove some of
120 those characters that are not actually used.")
124 ;;; iso02-acc.el ends here