Mercurial > emacs
view leim/quail/viqr.el @ 83103:efc0b56b83d9
Another server.el overhaul.
lib-src/emacsclient.c (xstrdup): New function.
(quote_argument): Use xmalloc, not malloc.
(main): Send environment variable values.
lisp/server.el (server-clients): Documentation update.
(server-ttys, server-frames): Removed.
(server-client, server-client-get, server-client-set)
(server-clients-with, server-add-client)
(server-delete-client): New functions.
(server-sentinel, server-handle-suspend-tty)
(server-handle-delete-tty, server-handle-delete-frame)
(server-start, server-process-filter, server-visit-files)
(server-buffer-done, server-kill-buffer-query-function)
(server-kill-emacs-query-function, server-switch-buffer): Use them.
(server-log): Handle both kinds of client references.
(server-start): Set up all hooks here.
(server-process-filter): Cleanup. Store version in client.
Handle -env commands for passing environment variable values.
(server-buffer-done): Don't close clients that were created bufferless.
(server-switch-buffer): Only look at frameless clients.
Don't switch away from current buffer if there is no next-buffer.
(server-unload-hook): Remove frame/tty hooks, too.
lisp/server.el (server-quote-arg, server-unquote-arg)
(server-process-filter, server-kill-buffer-query-function)
(server-kill-emacs-query-function): Doc update.
(server-buffer-done, server-switch-buffer): Use buffer-live-p, not
buffer-name.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-143
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sun, 18 Apr 2004 01:34:11 +0000 |
parents | 695cf19ef79e |
children | 23a17af379b1 375f2633d815 |
line wrap: on
line source
;;; viqr.el --- Quail packages for inputting Vietnamese with VIQR system -*-coding: iso-2022-7bit;-*- ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. ;; Licensed to the Free Software Foundation. ;; Keywords: multilingual, input method, latin ;; 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: ;;; Code: (require 'quail) (require 'viet-util) ;; `viet-viqr-alist' is an alist of Vietnamese characters vs ;; corresponding VIQR strings. We create Quail map which maps VIQR ;; strings to corresponding Vietnamese characters. (defmacro viet-quail-define-rules () (cons 'quail-define-rules (let ((l viet-viqr-alist) rules) (while l (setq rules (cons (list (cdr (car l)) (car (car l))) rules)) (setq l (cdr l))) rules))) (quail-define-package "vietnamese-viqr" "Vietnamese" "VQ" t "Vietnamese input method with VIQR mnemonic system effect | postfix | examples ------------+---------+---------- breve | ( | a( -> ,1e(B circumflex | ^ | a^ -> ,1b(B horn | + | o+ -> ,1=(B ------------+---------+---------- acute | ' | a' -> ,1a(B grave | ` | a` -> ,1`(B hook above | ? | a? -> ,1d(B tilde | ~ | a~ -> ,1c(B dot below | . | a. -> ,1U(B ------------+---------+---------- d bar | dd | dd -> ,1p(B ------------+---------+---------- no compose | \\ | a\\. -> a. ------------+---------+---------- combination| (~ | a(~ -> ,1G(B " nil t t nil nil t nil nil nil nil t) (viet-quail-define-rules) ;;; arch-tag: d2c29221-5a2e-46b2-898b-0e56bc4eb858 ;;; viqr.el ends here