Mercurial > emacs
annotate admin/charsets/cp51932.awk @ 93883:722fdbc7a012
* xdisp.c (redisplay_internal): Reset tty's color_mode when switching
to another frame.
* frame.c (do_switch_frame): Refine the top_frame/async_visible code.
Don't call set_tty_color_mode.
(store_frame_param): Reset previous_frame rather than call
set_tty_color_mode.
* term.c (set_tty_color_mode): Rewrite.
* dispextern.h (set_tty_color_mode): New type.
* termchar.h (struct tty_display_info): Add `previous_color_mode'.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 09 Apr 2008 03:25:14 +0000 |
parents | 9dffbad9f2a2 |
children | eb2d9dfc8486 |
rev | line source |
---|---|
89750 | 1 # cp51932.awk -- Generate a translation table for CP51932. |
91413
9dffbad9f2a2
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
2 # Copyright (C) 2004, 2005, 2006, 2007, 2008 |
89750 | 3 # National Institute of Advanced Industrial Science and Technology (AIST) |
4 # Registration Number H13PRO009 | |
5 # | |
6 # This file is part of GNU Emacs. | |
7 # | |
8 # GNU Emacs is free software; you can redistribute it and/or modify | |
9 # it under the terms of the GNU General Public License as published by | |
91413
9dffbad9f2a2
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
10 # the Free Software Foundation; either version 3, or (at your option) |
89750 | 11 # any later version. |
12 # | |
13 # GNU Emacs is distributed in the hope that it will be useful, | |
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 # GNU General Public License for more details. | |
17 # | |
18 # You should have received a copy of the GNU General Public License | |
19 # along with GNU Emacs; see the file COPYING. If not, write to the | |
91413
9dffbad9f2a2
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
20 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
9dffbad9f2a2
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
21 # Boston, MA 02110-1301, USA. |
89750 | 22 |
23 # Comment: | |
24 | |
25 # Genereate a translation table for CP51932 (EUC-JP of MicroSoft Version). | |
26 # It maps invalid JISX0208 code points used by CP51932 to Unicode. | |
27 # 4th field of the input has these meanings: | |
28 # 0: JISX0208 characters. | |
29 # 1: NEC special characters. | |
30 # 2: IBM extension characters. | |
31 # 3: NEC selection of IBM extension characters. | |
32 # Among them, 1 and 3 are the target characters. 2 should have | |
33 # already been mapped to 1 or 3. | |
34 | |
35 BEGIN { | |
36 print ";;; cp51932.el -- translation table for CP51932. -*- no-byte-compile: t -*-"; | |
37 print ";;; Automatically genrated from CP932-2BYTE.map"; | |
38 print "(let ((map"; | |
39 printf " '(;JISEXT<->UNICODE"; | |
40 } | |
41 | |
42 /# [13]/ { | |
43 printf "\n (#x%s . #x%s)", $5 ,substr($2, 3, 4); | |
44 } | |
45 | |
46 END { | |
47 print ")))"; | |
48 print " (mapc #'(lambda (x)"; | |
49 print " (setcar x (decode-char 'japanese-jisx0208 (car x))))"; | |
50 print " map)"; | |
51 print " (define-translation-table 'cp51932-decode map)"; | |
52 print " (mapc #'(lambda (x)"; | |
53 print " (let ((tmp (car x)))"; | |
54 print " (setcar x (cdr x)) (setcdr x tmp)))"; | |
55 print " map)"; | |
56 print " (define-translation-table 'cp51932-encode map))"; | |
57 } | |
89916
e0e4e6a0599f
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
89750
diff
changeset
|
58 |
e0e4e6a0599f
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
89750
diff
changeset
|
59 # arch-tag: bbae996b-2d1c-4e85-bb55-ac30146d7504 |