Mercurial > hg > xemacs-beta
annotate netinstall/iniparse.y @ 4568:1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
lisp/ChangeLog addition:
2008-12-28 Aidan Kehoe <kehoea@parhasard.net>
* coding.el (default-query-coding-region):
Declare using defun*, so we can #'return-from to it on
encountering a safe-charsets value of t. Comment out a few
debug messages.
(query-coding-region):
Correct the docstring, it deals with a region, not a string.
(unencodable-char-position):
Correct the implementation for non-nil COUNT, special-case a zero
value for count, treat it as one. Don't rely on dynamic scope when
calling the main lambda.
* unicode.el (unicode-query-coding-region):
Comment out some debug messages here.
* mule/mule-coding.el (8-bit-fixed-query-coding-region):
Comment out some debug messages here.
* code-init.el (raw-text):
Add a safe-charsets property to this coding system.
* mule/korean.el (iso-2022-int-1):
* mule/korean.el (euc-kr):
* mule/korean.el (iso-2022-kr):
Add safe-charsets properties for these coding systems.
* mule/japanese.el (iso-2022-jp):
* mule/japanese.el (jis7):
* mule/japanese.el (jis8):
* mule/japanese.el (shift-jis):
* mule/japanese.el (iso-2022-jp-1978-irv):
* mule/japanese.el (euc-jp):
Add safe-charsets properties for all these coding systems.
* mule/iso-with-esc.el:
Add safe-charsets properties to all the coding systems in
here. Comment on the downside of a safe-charsets value of t for
iso-latin-1-with-esc.
* mule/hebrew.el (ctext-hebrew):
Add a safe-charsets property for this coding system.
* mule/devanagari.el (in-is13194-devanagari):
Add a safe-charsets property for this coding system.
* mule/chinese.el (cn-gb-2312):
* mule/chinese.el (hz-gb-2312):
* mule/chinese.el (big5):
Add safe-charsets properties for these coding systems.
* mule/latin.el (iso-8859-14):
Add an implementation for this, using #'make-8-bit-coding-system.
* mule/mule-coding.el (ctext):
* mule/mule-coding.el (iso-2022-8bit-ss2):
* mule/mule-coding.el (iso-2022-7bit-ss2):
* mule/mule-coding.el (iso-2022-jp-2):
* mule/mule-coding.el (iso-2022-7bit):
* mule/mule-coding.el (iso-2022-8):
* mule/mule-coding.el (escape-quoted):
* mule/mule-coding.el (iso-2022-lock):
Add safe-charsets properties for all these coding systems.
src/ChangeLog addition:
2008-12-28 Aidan Kehoe <kehoea@parhasard.net>
* file-coding.c (Fmake_coding_system):
Document our use of the safe-chars and safe-charsets properties,
and the differences compared to GNU.
(make_coding_system_1): Don't drop the safe-chars and
safe-charsets properties.
(Fcoding_system_property): Return the safe-chars and safe-charsets
properties when asked for them.
* file-coding.h (CODING_SYSTEM_SAFE_CHARSETS):
* coding-system-slots.h:
Make the safe-chars and safe-charsets slots available in these
headers.
tests/ChangeLog addition:
2008-12-28 Aidan Kehoe <kehoea@parhasard.net>
* automated/query-coding-tests.el:
New file, testing the functionality of #'query-coding-region and
#'query-coding-string.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 28 Dec 2008 14:46:24 +0000 |
parents | 3078fd1074e8 |
children |
rev | line source |
---|---|
448 | 1 %{ |
2 /* | |
3 * Copyright (c) 2000, Red Hat, Inc. | |
4 * | |
5 * This program is free software; you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
7 * the Free Software Foundation; either version 2 of the License, or | |
8 * (at your option) any later version. | |
9 * | |
10 * A copy of the GNU General Public License can be found at | |
11 * http://www.gnu.org/ | |
12 * | |
13 * Written by DJ Delorie <dj@cygnus.com> | |
14 * | |
15 */ | |
16 | |
17 /* Parse the setup.ini files. inilex.l provides the tokens for this. */ | |
18 | |
19 #include <stdio.h> | |
20 #include <stdlib.h> | |
21 #include <string.h> | |
22 #include "win32.h" | |
23 | |
24 #include "ini.h" | |
25 #include "iniparse.h" | |
26 | |
27 #include "port.h" | |
28 | |
29 #define YYERROR_VERBOSE 1 | |
30 /*#define YYDEBUG 1*/ | |
31 | |
32 static Package *cp; | |
33 static int trust; | |
34 extern unsigned int setup_timestamp; | |
35 extern char *setup_version; | |
36 extern int yylineno; | |
37 extern int CDECL yyerror (char *s, ...); | |
38 | |
39 #define cpt (cp->info+trust) | |
40 | |
41 %} | |
42 | |
43 %token STRING | |
44 %token SETUP_TIMESTAMP SETUP_VERSION VERSION INSTALL SOURCE SDESC LDESC TYPE | |
45 %token T_PREV T_CURR T_TEST T_UNKNOWN | |
46 | |
47 %% | |
48 | |
49 whole_file | |
50 : setup_headers packages | |
51 ; | |
52 | |
53 setup_headers | |
54 : setup_header setup_headers | |
55 | /* empty */ | |
56 ; | |
57 | |
58 setup_header | |
59 : SETUP_TIMESTAMP STRING '\n' { setup_timestamp = strtoul ($2, 0, 0); } | |
60 | SETUP_VERSION STRING '\n' { setup_version = strdup ($2); } | |
61 | '\n' | |
62 | error { yyerror ("unrecognized line in setup.ini headers (do you have the latest setup?)"); } '\n' | |
63 ; | |
64 | |
65 packages | |
66 : package packages | |
67 | /* empty */ | |
68 ; | |
69 | |
70 package | |
71 : '@' STRING '\n' { new_package($2); } | |
72 lines | |
73 ; | |
74 | |
75 lines | |
76 : simple_line '\n' lines | |
77 | simple_line | |
78 ; | |
79 | |
80 simple_line | |
81 : VERSION STRING { cpt->version = $2; } | |
82 | SDESC STRING { cp->sdesc = $2; } | |
83 | LDESC STRING { cp->ldesc = $2; } | |
84 | INSTALL STRING STRING { cpt->install = $2; | |
85 cpt->install_size = atoi($3); } | |
86 | SOURCE STRING STRING { cpt->source = $2; | |
87 cpt->source_size = atoi($3); } | |
88 | TYPE STRING { if (!strcmp ($2, "cygwin")) | |
89 cp->type = TY_CYGWIN; | |
90 else if (!strcmp ($2, "native")) | |
91 cp->type = TY_NATIVE; | |
92 else | |
93 cp->type = TY_GENERIC; } | |
94 | T_PREV { trust = TRUST_PREV; } | |
95 | T_CURR { trust = TRUST_CURR; } | |
96 | T_TEST { trust = TRUST_TEST; } | |
97 | T_UNKNOWN { trust = TRUST_UNKNOWN; } | |
98 | /* empty */ | |
99 | error '\n' { yylineno --; | |
100 yyerror ("unrecognized line in package %s (do you have the latest setup?)", cp->name); | |
101 yylineno ++; | |
102 } | |
103 ; | |
104 | |
105 %% | |
106 | |
107 Package *package = 0; | |
108 Package *xemacs_package = 0; | |
109 int npackages = 0; | |
110 static int maxpackages = 0; | |
111 | |
112 Package * | |
113 new_package (char *name) | |
114 { | |
115 if (package == 0) | |
116 maxpackages = npackages = 0; | |
117 if (npackages >= maxpackages) | |
118 { | |
119 maxpackages += 10; | |
120 if (package) | |
121 package = (Package *) realloc (package, maxpackages * sizeof (Package)); | |
122 else | |
123 package = (Package *) malloc (maxpackages * sizeof (Package)); | |
124 } | |
125 cp = package + npackages; | |
126 npackages ++; | |
127 | |
128 memset (cp, 0, sizeof (Package)); | |
129 cp->name = name; | |
130 | |
131 trust = TRUST_CURR; | |
132 | |
133 return cp; | |
134 } |