Mercurial > emacs
view lisp/international/latin-4.el @ 22917:00f3497854c4
(quail-translation-keymap): Declare it as
variable instead of constant. Bind all keys less than 32 to
quail-other-command. Don't bind the key meta-prefix-char and
escape.
(quail-simple-translation-keymap): Likewise.
(quail-conversion-keymap): Bind the key C-h to
quail-translation-keymap.
(quail-define-package): Fix typo in doc-string.
(quail-conversion-str): New variable.
(quail-input-method): Bind buffer-undo-list to t. Show Quail
guidance buffer if necessary.
(quail-delete-region): Move the definintion before the first
calling place.
(quail-start-translation): Handle the case the arg KEY is nil.
Bind echo-keystrokes and help-char. Initialize quail-current-str
to "". If input-method-use-echo-area is non-nil, call
read-key-sequence with appropriate PROMPT arg. Setup
last-command-event by local variable `keyseq'. Generate an event
list form quail-current-str. If input-methodd-exit-on-first-char
is non-nil, return only the first event.
(quail-start-conversion): Likewise. Initialize
quail-conversion-str to "". Generate an event list form
quail-conversion-str.
(quail-update-translation): Expect that the function given by
(quail-update-translation-function) returns a new control-flag.
Handle the case the length of quail-current-key is 1. Use
string-as-unibyte if enable-multibyte-characters is nil. Always
assures that quail-current-str is Lisp string.
(quail-self-insert-command): Use `or' instead of `unless'.
(quail-update-current-translations): Always assures that
quail-current-str is Lisp string.
(quail-next-translation-block): Update unread-command-events
correctly.
(quail-abort-translation): Set quail-current-str to nil.
(quail-conversion-delete-char): Update quail-conversion-str.
(quail-conversion-delete-tail): Likewise.
(quail-conversion-backward-delete-char): Likewise.
(quail-show-guidance-buf): Show Quail guidance buffer not in echo
area if input-method-use-echo-area is non-nil.
(quail-show-translations): Bind current-translations locally to
quail-current-translations to get this value across different
buffers. Handle the case that the length quail-current-key is 0.
(quail-translation-help): If this command is invoked repeatedly,
scroll the already shown help window. Handle the case that this
command is called while converting (not translating).
(quail-conversion-help): This function deleted and the
functionality is merged to quail-translation-help.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 06 Aug 1998 05:38:11 +0000 |
parents | f8af1810653b |
children | f630f8658de3 |
line wrap: on
line source
;;; latin-4.el --- set up case-conversion and syntax tables for ISO Latin-4 ;; Copyright (C) 1997 Free Software Foundation, Inc. ;; Author: Erik Naggum ;; Maintainer: FSF ;; Keywords: i18n ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; 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, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;; Written by Erik Naggum. See case-table.el for details. ;;; Code: (require 'case-table) (let ((tbl (standard-case-table)) (set-case-syntax-offset (if set-case-syntax-set-multibyte (- (make-char 'latin-iso8859-4) 128) 0))) (set-case-syntax 160 " " tbl) ;no-break space (set-case-syntax-pair 161 177 tbl) ;latin letter a with ogonek (set-case-syntax 162 "w" tbl) ;latin letter kra (set-case-syntax-pair 163 179 tbl) ;latin letter r with cedilla (set-case-syntax 164 "w" tbl) ;currency sign (set-case-syntax-pair 165 181 tbl) ;latin letter i with tilde (set-case-syntax-pair 166 182 tbl) ;latin letter l with cedilla (set-case-syntax 167 "." tbl) ;section sign (set-case-syntax 168 "w" tbl) ;diaeresis (set-case-syntax-pair 169 185 tbl) ;latin letter s with caron (set-case-syntax-pair 170 186 tbl) ;latin letter e with macron (set-case-syntax-pair 171 187 tbl) ;latin letter g with cedilla (set-case-syntax-pair 172 188 tbl) ;latin letter t with stroke (set-case-syntax 173 "_" tbl) ;soft hyphen (set-case-syntax-pair 174 190 tbl) ;latin letter z with caron (set-case-syntax 175 "_" tbl) ;overline (set-case-syntax 176 "_" tbl) ;degree sign (set-case-syntax 178 "w" tbl) ;ogonek (set-case-syntax 180 "w" tbl) ;acute accent (set-case-syntax 183 "w" tbl) ;caron (set-case-syntax 184 "w" tbl) ;cedilla (set-case-syntax-pair 189 191 tbl) ;eng (set-case-syntax-pair 192 224 tbl) ;latin letter a with macron (set-case-syntax-pair 193 225 tbl) ;latin letter a with acute (set-case-syntax-pair 194 226 tbl) ;latin letter a with circumflex (set-case-syntax-pair 195 227 tbl) ;latin letter a with tilde (set-case-syntax-pair 196 228 tbl) ;latin letter a with diaeresis (set-case-syntax-pair 197 229 tbl) ;latin letter a with ring above (set-case-syntax-pair 198 230 tbl) ;latin letter ae (set-case-syntax-pair 199 231 tbl) ;latin letter i with ogonek (set-case-syntax-pair 200 232 tbl) ;latin letter c with caron (set-case-syntax-pair 201 233 tbl) ;latin letter e with acute (set-case-syntax-pair 202 234 tbl) ;latin letter e with ogonek (set-case-syntax-pair 203 235 tbl) ;latin letter e with diaeresis (set-case-syntax-pair 204 236 tbl) ;latin letter e with dot above (set-case-syntax-pair 205 237 tbl) ;latin letter i with acute (set-case-syntax-pair 206 238 tbl) ;latin letter i with circumflex (set-case-syntax-pair 207 239 tbl) ;latin letter i with macron (set-case-syntax-pair 208 240 tbl) ;latin letter d with stroke (set-case-syntax-pair 209 241 tbl) ;latin letter n with cedilla (set-case-syntax-pair 210 242 tbl) ;latin letter o with macron (set-case-syntax-pair 211 243 tbl) ;latin letter k with cedilla (set-case-syntax-pair 212 244 tbl) ;latin letter o with circumflex (set-case-syntax-pair 213 245 tbl) ;latin letter o with tilde (set-case-syntax-pair 214 246 tbl) ;latin letter o with diaeresis (set-case-syntax 215 "_" tbl) ;multiplication sign (set-case-syntax-pair 216 248 tbl) ;latin letter o with stroke (set-case-syntax-pair 217 249 tbl) ;latin letter u with ogonek (set-case-syntax-pair 218 250 tbl) ;latin letter u with acute (set-case-syntax-pair 219 251 tbl) ;latin letter u with circumflex (set-case-syntax-pair 220 252 tbl) ;latin letter u with diaeresis (set-case-syntax-pair 221 253 tbl) ;latin letter u with tilde (set-case-syntax-pair 222 254 tbl) ;latin letter u with macron (set-case-syntax 223 "w" tbl) ;latin letter sharp s (set-case-syntax 247 "_" tbl) ;division sign (set-case-syntax 255 "w" tbl)) ;dot above ;; When preloading this file, don't provide the feature. ;; Explicit `require' is used to load this for 8-bit characters. (or set-case-syntax-set-multibyte (provide 'latin-4)) ;;; latin-4.el ends here