Mercurial > hg > xemacs-beta
annotate lib-src/gnudepend.pl @ 4451:e214ff9f9507
Use char-tables, not vectors, to instantiate the display table specifiers.
2007-07-21 Aidan Kehoe <kehoea@parhasard.net>
* mule/cyril-util.el:
* mule/cyril-util.el (cyrillic-encode-koi8-r-char): Removed.
* mule/cyril-util.el (cyrillic-encode-alternativnyj-char):
Removed. No-one uses these functions in google.com/codesearch,
GNU have a comment doubting their utility, and their
implementation is trivial.
* mule/cyril-util.el (cyrillic-language-alist):
Reformatted.
* mule/cyril-util.el (standard-display-table)): Removed. It wasn't
used anyway.
* mule/cyril-util.el (standard-display-cyrillic-translit):
Rewrite it to work with character tables as display tables, and
not to abort with an error.
2007-07-21 Aidan Kehoe <kehoea@parhasard.net>
* disp-table.el:
* disp-table.el (make-display-table): Moved earlier in the file in
a weak attempt at making syncing with GNU easier.
* disp-table.el (frob-display-table):
Autoload it, accept TAG-SET, for editing specifiers.
* disp-table.el (describe-display-table):
Have it handle character sets.
* disp-table.el (standard-display-8bit-1):
* disp-table.el (standard-display-8bit):
* disp-table.el (standard-display-default-1):
* disp-table.el (standard-display-ascii):
* disp-table.el (standard-display-g1):
* disp-table.el (standard-display-graphic):
* disp-table.el (standard-display-underline):
* disp-table.el (standard-display-european):
Rework them all to use put-char-table, remove-char-table instead
of aset. Limit standard-display-g1, standard-display-graphic to
TTYs; have standard-display-underline work on X11 too.
* font.el (font-caps-display-table):
Use put-char-table instead of aset when editing a display table.
* x-init.el:
* x-init.el (tab):
Create the initial display table as a char-table, not a vector.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 24 Dec 2007 20:22:08 +0100 |
parents | 3ecd8885ac67 |
children |
rev | line source |
---|---|
428 | 1 #!/usr/bin/perl |
2 | |
3 while (<>) | |
4 { | |
5 if (/\\$/) | |
6 { | |
7 chop; | |
8 $foo .= $_; | |
9 } | |
10 else | |
11 { | |
12 @foo = split (/[ \\:]+/, $foo); | |
13 $filename = $foo[0]; | |
14 if (($filename =~ /^unex/) || | |
15 ($filename =~ /^sgiplay/) || | |
16 ($filename =~ /^Extern/) || | |
17 ($filename =~ /^extw/)) | |
18 { | |
19 $foo = ""; | |
20 next; | |
21 } | |
22 @foo = grep (!/\.c$/, @foo); | |
23 @foo = grep ((s/\/.*lwlib\//\$(LWLIBSRCDIR)\//, 1), @foo); | |
24 @foo = grep (!/lisp\.h/, @foo); | |
25 @foo = grep (!/lisp\.h/, @foo); | |
26 @foo = grep (!/lisp-union\.h/, @foo); | |
27 @foo = grep (!/lisp-disunion\.h/, @foo); | |
28 @foo = grep (!/lrecord\.h/, @foo); | |
29 @foo = grep (!/emacsfns\.h/, @foo); | |
30 @foo = grep (!/symeval\.h/, @foo); | |
31 @foo = grep (!/symsinit\.h/, @foo); | |
32 @foo = grep (!/syssignal\.h/, @foo); | |
33 @foo = grep (!/intl\.h/, @foo); | |
34 @foo = grep (!/tt_c\.h/, @foo); | |
35 @foo = grep (!/descrip\.h/, @foo); | |
36 shift @foo; | |
37 foreach $i (0 .. $#foo) | |
38 { | |
39 $foo[$i] = $filename . ": " . $foo[$i]; | |
40 } | |
41 print $filename . ": config.h\n"; | |
42 print join ("\n", @foo); | |
43 print "\n"; | |
44 $foo = ""; | |
45 } | |
46 } |