Mercurial > emacs
view lisp/language/greek.el @ 83319:8f5787c83345
Change key-translation-map to be terminal-local.
* src/keymap.c (Vkey_translation_map): Remove.
(syms_of_keymap): Remove DEFVAR for key-translation-map.
(Fdescribe_buffer_bindings): Update for terminal-local key-translation-map.
* src/keyboard.h (kboard): Add Vkey_translation_map field.
(Vglobal_key_translation_map): Declare.
* src/keyboard.c (Vglobal_key_translation_map): New variable.
(syms_of_keyboard): DEFVAR it and Vkey_translation_map.
(mark_kboards): Mark key-translation-map.
(read_key_sequence): Update for terminal-local key-translation-map.
* src/emacs.c (main): Call syms_of_keymap before syms_of_keyboard.
* lisp/term/mac-win.el (mac-handle-language-change): Use
global-key-translation-map instead of key-translation-map.
* lisp/obsolete/iso-acc.el (iso-accents-customize): Ditto.
* lisp/international/iso-transl.el (iso-transl-ctl-x-8-map): Ditto.
* lisp/double.el (double-setup): Ditto.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-359
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sun, 26 Jun 2005 21:06:46 +0000 |
parents | 197607499a29 |
children | 18a818a2ee7c f042e7c0fe20 |
line wrap: on
line source
;;; greek.el --- support for Greek -*- no-byte-compile: t -*- ;; Copyright (C) 1995 ;; National Institute of Advanced Industrial Science and Technology (AIST) ;; Registration Number H14PRO021 ;; Keywords: multilingual, Greek ;; 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: ;; For Greek, the character set ISO8859-7 is supported. ;;; Code: (make-coding-system 'greek-iso-8bit 2 ?7 "ISO 2022 based 8-bit encoding for Greek (MIME:ISO-8859-7)." '(ascii greek-iso8859-7 nil nil nil nil nil nil nil nil nil nil nil nil nil t) '((safe-charsets ascii greek-iso8859-7) (mime-charset . iso-8859-7))) (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit) (set-language-info-alist "Greek" '((charset . (greek-iso8859-7)) (coding-system . (greek-iso-8bit)) (coding-priority greek-iso-8bit) (nonascii-translation . greek-iso8859-7) (input-method . "greek") (unibyte-display . greek-iso-8bit) (documentation . t))) (provide 'greek) ;;; arch-tag: 9ba48d79-84bc-45e1-9318-685dc3921410 ;;; greek.el ends here