ferret 0.11.6 → 0.11.8.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. data/README +10 -22
  2. data/RELEASE_CHANGES +137 -0
  3. data/RELEASE_NOTES +60 -0
  4. data/Rakefile +379 -274
  5. data/TODO +100 -8
  6. data/bin/ferret-browser +0 -0
  7. data/ext/BZLIB_blocksort.c +1094 -0
  8. data/ext/BZLIB_bzlib.c +1578 -0
  9. data/ext/BZLIB_compress.c +672 -0
  10. data/ext/BZLIB_crctable.c +104 -0
  11. data/ext/BZLIB_decompress.c +626 -0
  12. data/ext/BZLIB_huffman.c +205 -0
  13. data/ext/BZLIB_randtable.c +84 -0
  14. data/ext/{api.c → STEMMER_api.c} +7 -10
  15. data/ext/{libstemmer.c → STEMMER_libstemmer.c} +3 -2
  16. data/ext/{stem_ISO_8859_1_danish.c → STEMMER_stem_ISO_8859_1_danish.c} +123 -124
  17. data/ext/{stem_ISO_8859_1_dutch.c → STEMMER_stem_ISO_8859_1_dutch.c} +177 -188
  18. data/ext/STEMMER_stem_ISO_8859_1_english.c +1117 -0
  19. data/ext/{stem_ISO_8859_1_finnish.c → STEMMER_stem_ISO_8859_1_finnish.c} +276 -306
  20. data/ext/STEMMER_stem_ISO_8859_1_french.c +1246 -0
  21. data/ext/{stem_ISO_8859_1_german.c → STEMMER_stem_ISO_8859_1_german.c} +161 -170
  22. data/ext/STEMMER_stem_ISO_8859_1_hungarian.c +1230 -0
  23. data/ext/STEMMER_stem_ISO_8859_1_italian.c +1065 -0
  24. data/ext/STEMMER_stem_ISO_8859_1_norwegian.c +297 -0
  25. data/ext/{stem_ISO_8859_1_porter.c → STEMMER_stem_ISO_8859_1_porter.c} +263 -290
  26. data/ext/{stem_ISO_8859_1_portuguese.c → STEMMER_stem_ISO_8859_1_portuguese.c} +362 -380
  27. data/ext/STEMMER_stem_ISO_8859_1_spanish.c +1093 -0
  28. data/ext/STEMMER_stem_ISO_8859_1_swedish.c +307 -0
  29. data/ext/STEMMER_stem_ISO_8859_2_romanian.c +998 -0
  30. data/ext/{stem_KOI8_R_russian.c → STEMMER_stem_KOI8_R_russian.c} +244 -245
  31. data/ext/STEMMER_stem_UTF_8_danish.c +339 -0
  32. data/ext/{stem_UTF_8_dutch.c → STEMMER_stem_UTF_8_dutch.c} +192 -211
  33. data/ext/STEMMER_stem_UTF_8_english.c +1125 -0
  34. data/ext/{stem_UTF_8_finnish.c → STEMMER_stem_UTF_8_finnish.c} +284 -324
  35. data/ext/STEMMER_stem_UTF_8_french.c +1256 -0
  36. data/ext/{stem_UTF_8_german.c → STEMMER_stem_UTF_8_german.c} +170 -187
  37. data/ext/STEMMER_stem_UTF_8_hungarian.c +1234 -0
  38. data/ext/STEMMER_stem_UTF_8_italian.c +1073 -0
  39. data/ext/STEMMER_stem_UTF_8_norwegian.c +299 -0
  40. data/ext/{stem_UTF_8_porter.c → STEMMER_stem_UTF_8_porter.c} +271 -310
  41. data/ext/STEMMER_stem_UTF_8_portuguese.c +1023 -0
  42. data/ext/STEMMER_stem_UTF_8_romanian.c +1004 -0
  43. data/ext/STEMMER_stem_UTF_8_russian.c +694 -0
  44. data/ext/STEMMER_stem_UTF_8_spanish.c +1097 -0
  45. data/ext/STEMMER_stem_UTF_8_swedish.c +309 -0
  46. data/ext/STEMMER_stem_UTF_8_turkish.c +2205 -0
  47. data/ext/{utilities.c → STEMMER_utilities.c} +100 -68
  48. data/ext/analysis.c +276 -121
  49. data/ext/analysis.h +190 -143
  50. data/ext/api.h +3 -4
  51. data/ext/array.c +5 -3
  52. data/ext/array.h +52 -43
  53. data/ext/bitvector.c +38 -482
  54. data/ext/bitvector.h +446 -124
  55. data/ext/bzlib.h +282 -0
  56. data/ext/bzlib_private.h +503 -0
  57. data/ext/compound_io.c +23 -22
  58. data/ext/config.h +21 -11
  59. data/ext/document.c +43 -40
  60. data/ext/document.h +31 -21
  61. data/ext/except.c +20 -38
  62. data/ext/except.h +89 -76
  63. data/ext/extconf.rb +3 -2
  64. data/ext/ferret.c +49 -35
  65. data/ext/ferret.h +14 -11
  66. data/ext/field_index.c +262 -0
  67. data/ext/field_index.h +52 -0
  68. data/ext/filter.c +11 -10
  69. data/ext/fs_store.c +65 -47
  70. data/ext/global.c +245 -165
  71. data/ext/global.h +252 -54
  72. data/ext/hash.c +200 -243
  73. data/ext/hash.h +205 -163
  74. data/ext/hashset.c +118 -96
  75. data/ext/hashset.h +110 -82
  76. data/ext/header.h +19 -19
  77. data/ext/helper.c +11 -10
  78. data/ext/helper.h +14 -6
  79. data/ext/index.c +745 -366
  80. data/ext/index.h +503 -529
  81. data/ext/internal.h +1020 -0
  82. data/ext/lang.c +10 -0
  83. data/ext/lang.h +35 -15
  84. data/ext/mempool.c +5 -4
  85. data/ext/mempool.h +30 -22
  86. data/ext/modules.h +35 -7
  87. data/ext/multimapper.c +43 -2
  88. data/ext/multimapper.h +32 -23
  89. data/ext/posh.c +0 -0
  90. data/ext/posh.h +4 -38
  91. data/ext/priorityqueue.c +10 -12
  92. data/ext/priorityqueue.h +33 -21
  93. data/ext/q_boolean.c +22 -9
  94. data/ext/q_const_score.c +3 -2
  95. data/ext/q_filtered_query.c +15 -12
  96. data/ext/q_fuzzy.c +147 -135
  97. data/ext/q_match_all.c +3 -2
  98. data/ext/q_multi_term.c +28 -32
  99. data/ext/q_parser.c +451 -173
  100. data/ext/q_phrase.c +158 -79
  101. data/ext/q_prefix.c +16 -18
  102. data/ext/q_range.c +363 -31
  103. data/ext/q_span.c +130 -141
  104. data/ext/q_term.c +21 -21
  105. data/ext/q_wildcard.c +19 -23
  106. data/ext/r_analysis.c +369 -242
  107. data/ext/r_index.c +421 -434
  108. data/ext/r_qparser.c +142 -92
  109. data/ext/r_search.c +790 -407
  110. data/ext/r_store.c +44 -44
  111. data/ext/r_utils.c +264 -96
  112. data/ext/ram_store.c +29 -23
  113. data/ext/scanner.c +895 -0
  114. data/ext/scanner.h +36 -0
  115. data/ext/scanner_mb.c +6701 -0
  116. data/ext/scanner_utf8.c +4415 -0
  117. data/ext/search.c +210 -87
  118. data/ext/search.h +556 -488
  119. data/ext/similarity.c +17 -16
  120. data/ext/similarity.h +51 -44
  121. data/ext/sort.c +157 -354
  122. data/ext/stem_ISO_8859_1_hungarian.h +16 -0
  123. data/ext/stem_ISO_8859_2_romanian.h +16 -0
  124. data/ext/stem_UTF_8_hungarian.h +16 -0
  125. data/ext/stem_UTF_8_romanian.h +16 -0
  126. data/ext/stem_UTF_8_turkish.h +16 -0
  127. data/ext/stopwords.c +287 -278
  128. data/ext/store.c +57 -51
  129. data/ext/store.h +308 -286
  130. data/ext/symbol.c +10 -0
  131. data/ext/symbol.h +23 -0
  132. data/ext/term_vectors.c +14 -293
  133. data/ext/threading.h +22 -22
  134. data/ext/win32.h +12 -4
  135. data/lib/ferret.rb +2 -1
  136. data/lib/ferret/browser.rb +1 -1
  137. data/lib/ferret/field_symbol.rb +94 -0
  138. data/lib/ferret/index.rb +221 -34
  139. data/lib/ferret/number_tools.rb +6 -6
  140. data/lib/ferret/version.rb +3 -0
  141. data/test/{unit → long_running}/largefile/tc_largefile.rb +1 -1
  142. data/test/test_helper.rb +7 -2
  143. data/test/test_installed.rb +1 -0
  144. data/test/threading/thread_safety_index_test.rb +10 -1
  145. data/test/threading/thread_safety_read_write_test.rb +4 -7
  146. data/test/threading/thread_safety_test.rb +0 -0
  147. data/test/unit/analysis/tc_analyzer.rb +29 -27
  148. data/test/unit/analysis/tc_token_stream.rb +23 -16
  149. data/test/unit/index/tc_index.rb +116 -11
  150. data/test/unit/index/tc_index_reader.rb +27 -27
  151. data/test/unit/index/tc_index_writer.rb +10 -0
  152. data/test/unit/index/th_doc.rb +38 -21
  153. data/test/unit/search/tc_filter.rb +31 -10
  154. data/test/unit/search/tc_index_searcher.rb +6 -0
  155. data/test/unit/search/tm_searcher.rb +53 -1
  156. data/test/unit/store/tc_fs_store.rb +40 -2
  157. data/test/unit/store/tc_ram_store.rb +0 -0
  158. data/test/unit/store/tm_store.rb +0 -0
  159. data/test/unit/store/tm_store_lock.rb +7 -6
  160. data/test/unit/tc_field_symbol.rb +26 -0
  161. data/test/unit/ts_analysis.rb +0 -0
  162. data/test/unit/ts_index.rb +0 -0
  163. data/test/unit/ts_store.rb +0 -0
  164. data/test/unit/ts_utils.rb +0 -0
  165. data/test/unit/utils/tc_number_tools.rb +0 -0
  166. data/test/utils/content_generator.rb +226 -0
  167. metadata +262 -221
  168. data/ext/inc/lang.h +0 -48
  169. data/ext/inc/threading.h +0 -31
  170. data/ext/stem_ISO_8859_1_english.c +0 -1156
  171. data/ext/stem_ISO_8859_1_french.c +0 -1276
  172. data/ext/stem_ISO_8859_1_italian.c +0 -1091
  173. data/ext/stem_ISO_8859_1_norwegian.c +0 -296
  174. data/ext/stem_ISO_8859_1_spanish.c +0 -1119
  175. data/ext/stem_ISO_8859_1_swedish.c +0 -307
  176. data/ext/stem_UTF_8_danish.c +0 -344
  177. data/ext/stem_UTF_8_english.c +0 -1176
  178. data/ext/stem_UTF_8_french.c +0 -1296
  179. data/ext/stem_UTF_8_italian.c +0 -1113
  180. data/ext/stem_UTF_8_norwegian.c +0 -302
  181. data/ext/stem_UTF_8_portuguese.c +0 -1055
  182. data/ext/stem_UTF_8_russian.c +0 -709
  183. data/ext/stem_UTF_8_spanish.c +0 -1137
  184. data/ext/stem_UTF_8_swedish.c +0 -313
  185. data/lib/ferret_version.rb +0 -3
@@ -3,7 +3,13 @@
3
3
 
4
4
  #include "header.h"
5
5
 
6
+ #ifdef __cplusplus
7
+ extern "C" {
8
+ #endif
6
9
  extern int portuguese_ISO_8859_1_stem(struct SN_env * z);
10
+ #ifdef __cplusplus
11
+ }
12
+ #endif
7
13
  static int r_residual_form(struct SN_env * z);
8
14
  static int r_residual_suffix(struct SN_env * z);
9
15
  static int r_verb_suffix(struct SN_env * z);
@@ -14,36 +20,44 @@ static int r_RV(struct SN_env * z);
14
20
  static int r_mark_regions(struct SN_env * z);
15
21
  static int r_postlude(struct SN_env * z);
16
22
  static int r_prelude(struct SN_env * z);
23
+ #ifdef __cplusplus
24
+ extern "C" {
25
+ #endif
26
+
17
27
 
18
28
  extern struct SN_env * portuguese_ISO_8859_1_create_env(void);
19
29
  extern void portuguese_ISO_8859_1_close_env(struct SN_env * z);
20
30
 
21
- static symbol s_0_1[1] = { 0xE3 };
22
- static symbol s_0_2[1] = { 0xF5 };
23
31
 
24
- static struct among a_0[3] =
32
+ #ifdef __cplusplus
33
+ }
34
+ #endif
35
+ static const symbol s_0_1[1] = { 0xE3 };
36
+ static const symbol s_0_2[1] = { 0xF5 };
37
+
38
+ static const struct among a_0[3] =
25
39
  {
26
40
  /* 0 */ { 0, 0, -1, 3, 0},
27
41
  /* 1 */ { 1, s_0_1, 0, 1, 0},
28
42
  /* 2 */ { 1, s_0_2, 0, 2, 0}
29
43
  };
30
44
 
31
- static symbol s_1_1[2] = { 'a', '~' };
32
- static symbol s_1_2[2] = { 'o', '~' };
45
+ static const symbol s_1_1[2] = { 'a', '~' };
46
+ static const symbol s_1_2[2] = { 'o', '~' };
33
47
 
34
- static struct among a_1[3] =
48
+ static const struct among a_1[3] =
35
49
  {
36
50
  /* 0 */ { 0, 0, -1, 3, 0},
37
51
  /* 1 */ { 2, s_1_1, 0, 1, 0},
38
52
  /* 2 */ { 2, s_1_2, 0, 2, 0}
39
53
  };
40
54
 
41
- static symbol s_2_0[2] = { 'i', 'c' };
42
- static symbol s_2_1[2] = { 'a', 'd' };
43
- static symbol s_2_2[2] = { 'o', 's' };
44
- static symbol s_2_3[2] = { 'i', 'v' };
55
+ static const symbol s_2_0[2] = { 'i', 'c' };
56
+ static const symbol s_2_1[2] = { 'a', 'd' };
57
+ static const symbol s_2_2[2] = { 'o', 's' };
58
+ static const symbol s_2_3[2] = { 'i', 'v' };
45
59
 
46
- static struct among a_2[4] =
60
+ static const struct among a_2[4] =
47
61
  {
48
62
  /* 0 */ { 2, s_2_0, -1, -1, 0},
49
63
  /* 1 */ { 2, s_2_1, -1, -1, 0},
@@ -51,75 +65,75 @@ static struct among a_2[4] =
51
65
  /* 3 */ { 2, s_2_3, -1, 1, 0}
52
66
  };
53
67
 
54
- static symbol s_3_0[4] = { 'a', 'n', 't', 'e' };
55
- static symbol s_3_1[4] = { 'a', 'v', 'e', 'l' };
56
- static symbol s_3_2[4] = { 0xED, 'v', 'e', 'l' };
68
+ static const symbol s_3_0[4] = { 'a', 'n', 't', 'e' };
69
+ static const symbol s_3_1[4] = { 'a', 'v', 'e', 'l' };
70
+ static const symbol s_3_2[4] = { 0xED, 'v', 'e', 'l' };
57
71
 
58
- static struct among a_3[3] =
72
+ static const struct among a_3[3] =
59
73
  {
60
74
  /* 0 */ { 4, s_3_0, -1, 1, 0},
61
75
  /* 1 */ { 4, s_3_1, -1, 1, 0},
62
76
  /* 2 */ { 4, s_3_2, -1, 1, 0}
63
77
  };
64
78
 
65
- static symbol s_4_0[2] = { 'i', 'c' };
66
- static symbol s_4_1[4] = { 'a', 'b', 'i', 'l' };
67
- static symbol s_4_2[2] = { 'i', 'v' };
79
+ static const symbol s_4_0[2] = { 'i', 'c' };
80
+ static const symbol s_4_1[4] = { 'a', 'b', 'i', 'l' };
81
+ static const symbol s_4_2[2] = { 'i', 'v' };
68
82
 
69
- static struct among a_4[3] =
83
+ static const struct among a_4[3] =
70
84
  {
71
85
  /* 0 */ { 2, s_4_0, -1, 1, 0},
72
86
  /* 1 */ { 4, s_4_1, -1, 1, 0},
73
87
  /* 2 */ { 2, s_4_2, -1, 1, 0}
74
88
  };
75
89
 
76
- static symbol s_5_0[3] = { 'i', 'c', 'a' };
77
- static symbol s_5_1[5] = { 0xE2, 'n', 'c', 'i', 'a' };
78
- static symbol s_5_2[5] = { 0xEA, 'n', 'c', 'i', 'a' };
79
- static symbol s_5_3[3] = { 'i', 'r', 'a' };
80
- static symbol s_5_4[5] = { 'a', 'd', 'o', 'r', 'a' };
81
- static symbol s_5_5[3] = { 'o', 's', 'a' };
82
- static symbol s_5_6[4] = { 'i', 's', 't', 'a' };
83
- static symbol s_5_7[3] = { 'i', 'v', 'a' };
84
- static symbol s_5_8[3] = { 'e', 'z', 'a' };
85
- static symbol s_5_9[5] = { 'l', 'o', 'g', 0xED, 'a' };
86
- static symbol s_5_10[5] = { 'i', 'd', 'a', 'd', 'e' };
87
- static symbol s_5_11[4] = { 'a', 'n', 't', 'e' };
88
- static symbol s_5_12[5] = { 'm', 'e', 'n', 't', 'e' };
89
- static symbol s_5_13[6] = { 'a', 'm', 'e', 'n', 't', 'e' };
90
- static symbol s_5_14[4] = { 0xE1, 'v', 'e', 'l' };
91
- static symbol s_5_15[4] = { 0xED, 'v', 'e', 'l' };
92
- static symbol s_5_16[5] = { 'u', 'c', 'i', 0xF3, 'n' };
93
- static symbol s_5_17[3] = { 'i', 'c', 'o' };
94
- static symbol s_5_18[4] = { 'i', 's', 'm', 'o' };
95
- static symbol s_5_19[3] = { 'o', 's', 'o' };
96
- static symbol s_5_20[6] = { 'a', 'm', 'e', 'n', 't', 'o' };
97
- static symbol s_5_21[6] = { 'i', 'm', 'e', 'n', 't', 'o' };
98
- static symbol s_5_22[3] = { 'i', 'v', 'o' };
99
- static symbol s_5_23[5] = { 'a', 0xE7, 'a', '~', 'o' };
100
- static symbol s_5_24[4] = { 'a', 'd', 'o', 'r' };
101
- static symbol s_5_25[4] = { 'i', 'c', 'a', 's' };
102
- static symbol s_5_26[6] = { 0xEA, 'n', 'c', 'i', 'a', 's' };
103
- static symbol s_5_27[4] = { 'i', 'r', 'a', 's' };
104
- static symbol s_5_28[6] = { 'a', 'd', 'o', 'r', 'a', 's' };
105
- static symbol s_5_29[4] = { 'o', 's', 'a', 's' };
106
- static symbol s_5_30[5] = { 'i', 's', 't', 'a', 's' };
107
- static symbol s_5_31[4] = { 'i', 'v', 'a', 's' };
108
- static symbol s_5_32[4] = { 'e', 'z', 'a', 's' };
109
- static symbol s_5_33[6] = { 'l', 'o', 'g', 0xED, 'a', 's' };
110
- static symbol s_5_34[6] = { 'i', 'd', 'a', 'd', 'e', 's' };
111
- static symbol s_5_35[7] = { 'u', 'c', 'i', 'o', 'n', 'e', 's' };
112
- static symbol s_5_36[6] = { 'a', 'd', 'o', 'r', 'e', 's' };
113
- static symbol s_5_37[5] = { 'a', 'n', 't', 'e', 's' };
114
- static symbol s_5_38[6] = { 'a', 0xE7, 'o', '~', 'e', 's' };
115
- static symbol s_5_39[4] = { 'i', 'c', 'o', 's' };
116
- static symbol s_5_40[5] = { 'i', 's', 'm', 'o', 's' };
117
- static symbol s_5_41[4] = { 'o', 's', 'o', 's' };
118
- static symbol s_5_42[7] = { 'a', 'm', 'e', 'n', 't', 'o', 's' };
119
- static symbol s_5_43[7] = { 'i', 'm', 'e', 'n', 't', 'o', 's' };
120
- static symbol s_5_44[4] = { 'i', 'v', 'o', 's' };
121
-
122
- static struct among a_5[45] =
90
+ static const symbol s_5_0[3] = { 'i', 'c', 'a' };
91
+ static const symbol s_5_1[5] = { 0xE2, 'n', 'c', 'i', 'a' };
92
+ static const symbol s_5_2[5] = { 0xEA, 'n', 'c', 'i', 'a' };
93
+ static const symbol s_5_3[3] = { 'i', 'r', 'a' };
94
+ static const symbol s_5_4[5] = { 'a', 'd', 'o', 'r', 'a' };
95
+ static const symbol s_5_5[3] = { 'o', 's', 'a' };
96
+ static const symbol s_5_6[4] = { 'i', 's', 't', 'a' };
97
+ static const symbol s_5_7[3] = { 'i', 'v', 'a' };
98
+ static const symbol s_5_8[3] = { 'e', 'z', 'a' };
99
+ static const symbol s_5_9[5] = { 'l', 'o', 'g', 0xED, 'a' };
100
+ static const symbol s_5_10[5] = { 'i', 'd', 'a', 'd', 'e' };
101
+ static const symbol s_5_11[4] = { 'a', 'n', 't', 'e' };
102
+ static const symbol s_5_12[5] = { 'm', 'e', 'n', 't', 'e' };
103
+ static const symbol s_5_13[6] = { 'a', 'm', 'e', 'n', 't', 'e' };
104
+ static const symbol s_5_14[4] = { 0xE1, 'v', 'e', 'l' };
105
+ static const symbol s_5_15[4] = { 0xED, 'v', 'e', 'l' };
106
+ static const symbol s_5_16[5] = { 'u', 'c', 'i', 0xF3, 'n' };
107
+ static const symbol s_5_17[3] = { 'i', 'c', 'o' };
108
+ static const symbol s_5_18[4] = { 'i', 's', 'm', 'o' };
109
+ static const symbol s_5_19[3] = { 'o', 's', 'o' };
110
+ static const symbol s_5_20[6] = { 'a', 'm', 'e', 'n', 't', 'o' };
111
+ static const symbol s_5_21[6] = { 'i', 'm', 'e', 'n', 't', 'o' };
112
+ static const symbol s_5_22[3] = { 'i', 'v', 'o' };
113
+ static const symbol s_5_23[5] = { 'a', 0xE7, 'a', '~', 'o' };
114
+ static const symbol s_5_24[4] = { 'a', 'd', 'o', 'r' };
115
+ static const symbol s_5_25[4] = { 'i', 'c', 'a', 's' };
116
+ static const symbol s_5_26[6] = { 0xEA, 'n', 'c', 'i', 'a', 's' };
117
+ static const symbol s_5_27[4] = { 'i', 'r', 'a', 's' };
118
+ static const symbol s_5_28[6] = { 'a', 'd', 'o', 'r', 'a', 's' };
119
+ static const symbol s_5_29[4] = { 'o', 's', 'a', 's' };
120
+ static const symbol s_5_30[5] = { 'i', 's', 't', 'a', 's' };
121
+ static const symbol s_5_31[4] = { 'i', 'v', 'a', 's' };
122
+ static const symbol s_5_32[4] = { 'e', 'z', 'a', 's' };
123
+ static const symbol s_5_33[6] = { 'l', 'o', 'g', 0xED, 'a', 's' };
124
+ static const symbol s_5_34[6] = { 'i', 'd', 'a', 'd', 'e', 's' };
125
+ static const symbol s_5_35[7] = { 'u', 'c', 'i', 'o', 'n', 'e', 's' };
126
+ static const symbol s_5_36[6] = { 'a', 'd', 'o', 'r', 'e', 's' };
127
+ static const symbol s_5_37[5] = { 'a', 'n', 't', 'e', 's' };
128
+ static const symbol s_5_38[6] = { 'a', 0xE7, 'o', '~', 'e', 's' };
129
+ static const symbol s_5_39[4] = { 'i', 'c', 'o', 's' };
130
+ static const symbol s_5_40[5] = { 'i', 's', 'm', 'o', 's' };
131
+ static const symbol s_5_41[4] = { 'o', 's', 'o', 's' };
132
+ static const symbol s_5_42[7] = { 'a', 'm', 'e', 'n', 't', 'o', 's' };
133
+ static const symbol s_5_43[7] = { 'i', 'm', 'e', 'n', 't', 'o', 's' };
134
+ static const symbol s_5_44[4] = { 'i', 'v', 'o', 's' };
135
+
136
+ static const struct among a_5[45] =
123
137
  {
124
138
  /* 0 */ { 3, s_5_0, -1, 1, 0},
125
139
  /* 1 */ { 5, s_5_1, -1, 1, 0},
@@ -168,128 +182,128 @@ static struct among a_5[45] =
168
182
  /* 44 */ { 4, s_5_44, -1, 8, 0}
169
183
  };
170
184
 
171
- static symbol s_6_0[3] = { 'a', 'd', 'a' };
172
- static symbol s_6_1[3] = { 'i', 'd', 'a' };
173
- static symbol s_6_2[2] = { 'i', 'a' };
174
- static symbol s_6_3[4] = { 'a', 'r', 'i', 'a' };
175
- static symbol s_6_4[4] = { 'e', 'r', 'i', 'a' };
176
- static symbol s_6_5[4] = { 'i', 'r', 'i', 'a' };
177
- static symbol s_6_6[3] = { 'a', 'r', 'a' };
178
- static symbol s_6_7[3] = { 'e', 'r', 'a' };
179
- static symbol s_6_8[3] = { 'i', 'r', 'a' };
180
- static symbol s_6_9[3] = { 'a', 'v', 'a' };
181
- static symbol s_6_10[4] = { 'a', 's', 's', 'e' };
182
- static symbol s_6_11[4] = { 'e', 's', 's', 'e' };
183
- static symbol s_6_12[4] = { 'i', 's', 's', 'e' };
184
- static symbol s_6_13[4] = { 'a', 's', 't', 'e' };
185
- static symbol s_6_14[4] = { 'e', 's', 't', 'e' };
186
- static symbol s_6_15[4] = { 'i', 's', 't', 'e' };
187
- static symbol s_6_16[2] = { 'e', 'i' };
188
- static symbol s_6_17[4] = { 'a', 'r', 'e', 'i' };
189
- static symbol s_6_18[4] = { 'e', 'r', 'e', 'i' };
190
- static symbol s_6_19[4] = { 'i', 'r', 'e', 'i' };
191
- static symbol s_6_20[2] = { 'a', 'm' };
192
- static symbol s_6_21[3] = { 'i', 'a', 'm' };
193
- static symbol s_6_22[5] = { 'a', 'r', 'i', 'a', 'm' };
194
- static symbol s_6_23[5] = { 'e', 'r', 'i', 'a', 'm' };
195
- static symbol s_6_24[5] = { 'i', 'r', 'i', 'a', 'm' };
196
- static symbol s_6_25[4] = { 'a', 'r', 'a', 'm' };
197
- static symbol s_6_26[4] = { 'e', 'r', 'a', 'm' };
198
- static symbol s_6_27[4] = { 'i', 'r', 'a', 'm' };
199
- static symbol s_6_28[4] = { 'a', 'v', 'a', 'm' };
200
- static symbol s_6_29[2] = { 'e', 'm' };
201
- static symbol s_6_30[4] = { 'a', 'r', 'e', 'm' };
202
- static symbol s_6_31[4] = { 'e', 'r', 'e', 'm' };
203
- static symbol s_6_32[4] = { 'i', 'r', 'e', 'm' };
204
- static symbol s_6_33[5] = { 'a', 's', 's', 'e', 'm' };
205
- static symbol s_6_34[5] = { 'e', 's', 's', 'e', 'm' };
206
- static symbol s_6_35[5] = { 'i', 's', 's', 'e', 'm' };
207
- static symbol s_6_36[3] = { 'a', 'd', 'o' };
208
- static symbol s_6_37[3] = { 'i', 'd', 'o' };
209
- static symbol s_6_38[4] = { 'a', 'n', 'd', 'o' };
210
- static symbol s_6_39[4] = { 'e', 'n', 'd', 'o' };
211
- static symbol s_6_40[4] = { 'i', 'n', 'd', 'o' };
212
- static symbol s_6_41[5] = { 'a', 'r', 'a', '~', 'o' };
213
- static symbol s_6_42[5] = { 'e', 'r', 'a', '~', 'o' };
214
- static symbol s_6_43[5] = { 'i', 'r', 'a', '~', 'o' };
215
- static symbol s_6_44[2] = { 'a', 'r' };
216
- static symbol s_6_45[2] = { 'e', 'r' };
217
- static symbol s_6_46[2] = { 'i', 'r' };
218
- static symbol s_6_47[2] = { 'a', 's' };
219
- static symbol s_6_48[4] = { 'a', 'd', 'a', 's' };
220
- static symbol s_6_49[4] = { 'i', 'd', 'a', 's' };
221
- static symbol s_6_50[3] = { 'i', 'a', 's' };
222
- static symbol s_6_51[5] = { 'a', 'r', 'i', 'a', 's' };
223
- static symbol s_6_52[5] = { 'e', 'r', 'i', 'a', 's' };
224
- static symbol s_6_53[5] = { 'i', 'r', 'i', 'a', 's' };
225
- static symbol s_6_54[4] = { 'a', 'r', 'a', 's' };
226
- static symbol s_6_55[4] = { 'e', 'r', 'a', 's' };
227
- static symbol s_6_56[4] = { 'i', 'r', 'a', 's' };
228
- static symbol s_6_57[4] = { 'a', 'v', 'a', 's' };
229
- static symbol s_6_58[2] = { 'e', 's' };
230
- static symbol s_6_59[5] = { 'a', 'r', 'd', 'e', 's' };
231
- static symbol s_6_60[5] = { 'e', 'r', 'd', 'e', 's' };
232
- static symbol s_6_61[5] = { 'i', 'r', 'd', 'e', 's' };
233
- static symbol s_6_62[4] = { 'a', 'r', 'e', 's' };
234
- static symbol s_6_63[4] = { 'e', 'r', 'e', 's' };
235
- static symbol s_6_64[4] = { 'i', 'r', 'e', 's' };
236
- static symbol s_6_65[5] = { 'a', 's', 's', 'e', 's' };
237
- static symbol s_6_66[5] = { 'e', 's', 's', 'e', 's' };
238
- static symbol s_6_67[5] = { 'i', 's', 's', 'e', 's' };
239
- static symbol s_6_68[5] = { 'a', 's', 't', 'e', 's' };
240
- static symbol s_6_69[5] = { 'e', 's', 't', 'e', 's' };
241
- static symbol s_6_70[5] = { 'i', 's', 't', 'e', 's' };
242
- static symbol s_6_71[2] = { 'i', 's' };
243
- static symbol s_6_72[3] = { 'a', 'i', 's' };
244
- static symbol s_6_73[3] = { 'e', 'i', 's' };
245
- static symbol s_6_74[5] = { 'a', 'r', 'e', 'i', 's' };
246
- static symbol s_6_75[5] = { 'e', 'r', 'e', 'i', 's' };
247
- static symbol s_6_76[5] = { 'i', 'r', 'e', 'i', 's' };
248
- static symbol s_6_77[5] = { 0xE1, 'r', 'e', 'i', 's' };
249
- static symbol s_6_78[5] = { 0xE9, 'r', 'e', 'i', 's' };
250
- static symbol s_6_79[5] = { 0xED, 'r', 'e', 'i', 's' };
251
- static symbol s_6_80[6] = { 0xE1, 's', 's', 'e', 'i', 's' };
252
- static symbol s_6_81[6] = { 0xE9, 's', 's', 'e', 'i', 's' };
253
- static symbol s_6_82[6] = { 0xED, 's', 's', 'e', 'i', 's' };
254
- static symbol s_6_83[5] = { 0xE1, 'v', 'e', 'i', 's' };
255
- static symbol s_6_84[4] = { 0xED, 'e', 'i', 's' };
256
- static symbol s_6_85[6] = { 'a', 'r', 0xED, 'e', 'i', 's' };
257
- static symbol s_6_86[6] = { 'e', 'r', 0xED, 'e', 'i', 's' };
258
- static symbol s_6_87[6] = { 'i', 'r', 0xED, 'e', 'i', 's' };
259
- static symbol s_6_88[4] = { 'a', 'd', 'o', 's' };
260
- static symbol s_6_89[4] = { 'i', 'd', 'o', 's' };
261
- static symbol s_6_90[4] = { 'a', 'm', 'o', 's' };
262
- static symbol s_6_91[6] = { 0xE1, 'r', 'a', 'm', 'o', 's' };
263
- static symbol s_6_92[6] = { 0xE9, 'r', 'a', 'm', 'o', 's' };
264
- static symbol s_6_93[6] = { 0xED, 'r', 'a', 'm', 'o', 's' };
265
- static symbol s_6_94[6] = { 0xE1, 'v', 'a', 'm', 'o', 's' };
266
- static symbol s_6_95[5] = { 0xED, 'a', 'm', 'o', 's' };
267
- static symbol s_6_96[7] = { 'a', 'r', 0xED, 'a', 'm', 'o', 's' };
268
- static symbol s_6_97[7] = { 'e', 'r', 0xED, 'a', 'm', 'o', 's' };
269
- static symbol s_6_98[7] = { 'i', 'r', 0xED, 'a', 'm', 'o', 's' };
270
- static symbol s_6_99[4] = { 'e', 'm', 'o', 's' };
271
- static symbol s_6_100[6] = { 'a', 'r', 'e', 'm', 'o', 's' };
272
- static symbol s_6_101[6] = { 'e', 'r', 'e', 'm', 'o', 's' };
273
- static symbol s_6_102[6] = { 'i', 'r', 'e', 'm', 'o', 's' };
274
- static symbol s_6_103[7] = { 0xE1, 's', 's', 'e', 'm', 'o', 's' };
275
- static symbol s_6_104[7] = { 0xEA, 's', 's', 'e', 'm', 'o', 's' };
276
- static symbol s_6_105[7] = { 0xED, 's', 's', 'e', 'm', 'o', 's' };
277
- static symbol s_6_106[4] = { 'i', 'm', 'o', 's' };
278
- static symbol s_6_107[5] = { 'a', 'r', 'm', 'o', 's' };
279
- static symbol s_6_108[5] = { 'e', 'r', 'm', 'o', 's' };
280
- static symbol s_6_109[5] = { 'i', 'r', 'm', 'o', 's' };
281
- static symbol s_6_110[4] = { 0xE1, 'm', 'o', 's' };
282
- static symbol s_6_111[4] = { 'a', 'r', 0xE1, 's' };
283
- static symbol s_6_112[4] = { 'e', 'r', 0xE1, 's' };
284
- static symbol s_6_113[4] = { 'i', 'r', 0xE1, 's' };
285
- static symbol s_6_114[2] = { 'e', 'u' };
286
- static symbol s_6_115[2] = { 'i', 'u' };
287
- static symbol s_6_116[2] = { 'o', 'u' };
288
- static symbol s_6_117[3] = { 'a', 'r', 0xE1 };
289
- static symbol s_6_118[3] = { 'e', 'r', 0xE1 };
290
- static symbol s_6_119[3] = { 'i', 'r', 0xE1 };
291
-
292
- static struct among a_6[120] =
185
+ static const symbol s_6_0[3] = { 'a', 'd', 'a' };
186
+ static const symbol s_6_1[3] = { 'i', 'd', 'a' };
187
+ static const symbol s_6_2[2] = { 'i', 'a' };
188
+ static const symbol s_6_3[4] = { 'a', 'r', 'i', 'a' };
189
+ static const symbol s_6_4[4] = { 'e', 'r', 'i', 'a' };
190
+ static const symbol s_6_5[4] = { 'i', 'r', 'i', 'a' };
191
+ static const symbol s_6_6[3] = { 'a', 'r', 'a' };
192
+ static const symbol s_6_7[3] = { 'e', 'r', 'a' };
193
+ static const symbol s_6_8[3] = { 'i', 'r', 'a' };
194
+ static const symbol s_6_9[3] = { 'a', 'v', 'a' };
195
+ static const symbol s_6_10[4] = { 'a', 's', 's', 'e' };
196
+ static const symbol s_6_11[4] = { 'e', 's', 's', 'e' };
197
+ static const symbol s_6_12[4] = { 'i', 's', 's', 'e' };
198
+ static const symbol s_6_13[4] = { 'a', 's', 't', 'e' };
199
+ static const symbol s_6_14[4] = { 'e', 's', 't', 'e' };
200
+ static const symbol s_6_15[4] = { 'i', 's', 't', 'e' };
201
+ static const symbol s_6_16[2] = { 'e', 'i' };
202
+ static const symbol s_6_17[4] = { 'a', 'r', 'e', 'i' };
203
+ static const symbol s_6_18[4] = { 'e', 'r', 'e', 'i' };
204
+ static const symbol s_6_19[4] = { 'i', 'r', 'e', 'i' };
205
+ static const symbol s_6_20[2] = { 'a', 'm' };
206
+ static const symbol s_6_21[3] = { 'i', 'a', 'm' };
207
+ static const symbol s_6_22[5] = { 'a', 'r', 'i', 'a', 'm' };
208
+ static const symbol s_6_23[5] = { 'e', 'r', 'i', 'a', 'm' };
209
+ static const symbol s_6_24[5] = { 'i', 'r', 'i', 'a', 'm' };
210
+ static const symbol s_6_25[4] = { 'a', 'r', 'a', 'm' };
211
+ static const symbol s_6_26[4] = { 'e', 'r', 'a', 'm' };
212
+ static const symbol s_6_27[4] = { 'i', 'r', 'a', 'm' };
213
+ static const symbol s_6_28[4] = { 'a', 'v', 'a', 'm' };
214
+ static const symbol s_6_29[2] = { 'e', 'm' };
215
+ static const symbol s_6_30[4] = { 'a', 'r', 'e', 'm' };
216
+ static const symbol s_6_31[4] = { 'e', 'r', 'e', 'm' };
217
+ static const symbol s_6_32[4] = { 'i', 'r', 'e', 'm' };
218
+ static const symbol s_6_33[5] = { 'a', 's', 's', 'e', 'm' };
219
+ static const symbol s_6_34[5] = { 'e', 's', 's', 'e', 'm' };
220
+ static const symbol s_6_35[5] = { 'i', 's', 's', 'e', 'm' };
221
+ static const symbol s_6_36[3] = { 'a', 'd', 'o' };
222
+ static const symbol s_6_37[3] = { 'i', 'd', 'o' };
223
+ static const symbol s_6_38[4] = { 'a', 'n', 'd', 'o' };
224
+ static const symbol s_6_39[4] = { 'e', 'n', 'd', 'o' };
225
+ static const symbol s_6_40[4] = { 'i', 'n', 'd', 'o' };
226
+ static const symbol s_6_41[5] = { 'a', 'r', 'a', '~', 'o' };
227
+ static const symbol s_6_42[5] = { 'e', 'r', 'a', '~', 'o' };
228
+ static const symbol s_6_43[5] = { 'i', 'r', 'a', '~', 'o' };
229
+ static const symbol s_6_44[2] = { 'a', 'r' };
230
+ static const symbol s_6_45[2] = { 'e', 'r' };
231
+ static const symbol s_6_46[2] = { 'i', 'r' };
232
+ static const symbol s_6_47[2] = { 'a', 's' };
233
+ static const symbol s_6_48[4] = { 'a', 'd', 'a', 's' };
234
+ static const symbol s_6_49[4] = { 'i', 'd', 'a', 's' };
235
+ static const symbol s_6_50[3] = { 'i', 'a', 's' };
236
+ static const symbol s_6_51[5] = { 'a', 'r', 'i', 'a', 's' };
237
+ static const symbol s_6_52[5] = { 'e', 'r', 'i', 'a', 's' };
238
+ static const symbol s_6_53[5] = { 'i', 'r', 'i', 'a', 's' };
239
+ static const symbol s_6_54[4] = { 'a', 'r', 'a', 's' };
240
+ static const symbol s_6_55[4] = { 'e', 'r', 'a', 's' };
241
+ static const symbol s_6_56[4] = { 'i', 'r', 'a', 's' };
242
+ static const symbol s_6_57[4] = { 'a', 'v', 'a', 's' };
243
+ static const symbol s_6_58[2] = { 'e', 's' };
244
+ static const symbol s_6_59[5] = { 'a', 'r', 'd', 'e', 's' };
245
+ static const symbol s_6_60[5] = { 'e', 'r', 'd', 'e', 's' };
246
+ static const symbol s_6_61[5] = { 'i', 'r', 'd', 'e', 's' };
247
+ static const symbol s_6_62[4] = { 'a', 'r', 'e', 's' };
248
+ static const symbol s_6_63[4] = { 'e', 'r', 'e', 's' };
249
+ static const symbol s_6_64[4] = { 'i', 'r', 'e', 's' };
250
+ static const symbol s_6_65[5] = { 'a', 's', 's', 'e', 's' };
251
+ static const symbol s_6_66[5] = { 'e', 's', 's', 'e', 's' };
252
+ static const symbol s_6_67[5] = { 'i', 's', 's', 'e', 's' };
253
+ static const symbol s_6_68[5] = { 'a', 's', 't', 'e', 's' };
254
+ static const symbol s_6_69[5] = { 'e', 's', 't', 'e', 's' };
255
+ static const symbol s_6_70[5] = { 'i', 's', 't', 'e', 's' };
256
+ static const symbol s_6_71[2] = { 'i', 's' };
257
+ static const symbol s_6_72[3] = { 'a', 'i', 's' };
258
+ static const symbol s_6_73[3] = { 'e', 'i', 's' };
259
+ static const symbol s_6_74[5] = { 'a', 'r', 'e', 'i', 's' };
260
+ static const symbol s_6_75[5] = { 'e', 'r', 'e', 'i', 's' };
261
+ static const symbol s_6_76[5] = { 'i', 'r', 'e', 'i', 's' };
262
+ static const symbol s_6_77[5] = { 0xE1, 'r', 'e', 'i', 's' };
263
+ static const symbol s_6_78[5] = { 0xE9, 'r', 'e', 'i', 's' };
264
+ static const symbol s_6_79[5] = { 0xED, 'r', 'e', 'i', 's' };
265
+ static const symbol s_6_80[6] = { 0xE1, 's', 's', 'e', 'i', 's' };
266
+ static const symbol s_6_81[6] = { 0xE9, 's', 's', 'e', 'i', 's' };
267
+ static const symbol s_6_82[6] = { 0xED, 's', 's', 'e', 'i', 's' };
268
+ static const symbol s_6_83[5] = { 0xE1, 'v', 'e', 'i', 's' };
269
+ static const symbol s_6_84[4] = { 0xED, 'e', 'i', 's' };
270
+ static const symbol s_6_85[6] = { 'a', 'r', 0xED, 'e', 'i', 's' };
271
+ static const symbol s_6_86[6] = { 'e', 'r', 0xED, 'e', 'i', 's' };
272
+ static const symbol s_6_87[6] = { 'i', 'r', 0xED, 'e', 'i', 's' };
273
+ static const symbol s_6_88[4] = { 'a', 'd', 'o', 's' };
274
+ static const symbol s_6_89[4] = { 'i', 'd', 'o', 's' };
275
+ static const symbol s_6_90[4] = { 'a', 'm', 'o', 's' };
276
+ static const symbol s_6_91[6] = { 0xE1, 'r', 'a', 'm', 'o', 's' };
277
+ static const symbol s_6_92[6] = { 0xE9, 'r', 'a', 'm', 'o', 's' };
278
+ static const symbol s_6_93[6] = { 0xED, 'r', 'a', 'm', 'o', 's' };
279
+ static const symbol s_6_94[6] = { 0xE1, 'v', 'a', 'm', 'o', 's' };
280
+ static const symbol s_6_95[5] = { 0xED, 'a', 'm', 'o', 's' };
281
+ static const symbol s_6_96[7] = { 'a', 'r', 0xED, 'a', 'm', 'o', 's' };
282
+ static const symbol s_6_97[7] = { 'e', 'r', 0xED, 'a', 'm', 'o', 's' };
283
+ static const symbol s_6_98[7] = { 'i', 'r', 0xED, 'a', 'm', 'o', 's' };
284
+ static const symbol s_6_99[4] = { 'e', 'm', 'o', 's' };
285
+ static const symbol s_6_100[6] = { 'a', 'r', 'e', 'm', 'o', 's' };
286
+ static const symbol s_6_101[6] = { 'e', 'r', 'e', 'm', 'o', 's' };
287
+ static const symbol s_6_102[6] = { 'i', 'r', 'e', 'm', 'o', 's' };
288
+ static const symbol s_6_103[7] = { 0xE1, 's', 's', 'e', 'm', 'o', 's' };
289
+ static const symbol s_6_104[7] = { 0xEA, 's', 's', 'e', 'm', 'o', 's' };
290
+ static const symbol s_6_105[7] = { 0xED, 's', 's', 'e', 'm', 'o', 's' };
291
+ static const symbol s_6_106[4] = { 'i', 'm', 'o', 's' };
292
+ static const symbol s_6_107[5] = { 'a', 'r', 'm', 'o', 's' };
293
+ static const symbol s_6_108[5] = { 'e', 'r', 'm', 'o', 's' };
294
+ static const symbol s_6_109[5] = { 'i', 'r', 'm', 'o', 's' };
295
+ static const symbol s_6_110[4] = { 0xE1, 'm', 'o', 's' };
296
+ static const symbol s_6_111[4] = { 'a', 'r', 0xE1, 's' };
297
+ static const symbol s_6_112[4] = { 'e', 'r', 0xE1, 's' };
298
+ static const symbol s_6_113[4] = { 'i', 'r', 0xE1, 's' };
299
+ static const symbol s_6_114[2] = { 'e', 'u' };
300
+ static const symbol s_6_115[2] = { 'i', 'u' };
301
+ static const symbol s_6_116[2] = { 'o', 'u' };
302
+ static const symbol s_6_117[3] = { 'a', 'r', 0xE1 };
303
+ static const symbol s_6_118[3] = { 'e', 'r', 0xE1 };
304
+ static const symbol s_6_119[3] = { 'i', 'r', 0xE1 };
305
+
306
+ static const struct among a_6[120] =
293
307
  {
294
308
  /* 0 */ { 3, s_6_0, -1, 1, 0},
295
309
  /* 1 */ { 3, s_6_1, -1, 1, 0},
@@ -413,15 +427,15 @@ static struct among a_6[120] =
413
427
  /*119 */ { 3, s_6_119, -1, 1, 0}
414
428
  };
415
429
 
416
- static symbol s_7_0[1] = { 'a' };
417
- static symbol s_7_1[1] = { 'i' };
418
- static symbol s_7_2[1] = { 'o' };
419
- static symbol s_7_3[2] = { 'o', 's' };
420
- static symbol s_7_4[1] = { 0xE1 };
421
- static symbol s_7_5[1] = { 0xED };
422
- static symbol s_7_6[1] = { 0xF3 };
430
+ static const symbol s_7_0[1] = { 'a' };
431
+ static const symbol s_7_1[1] = { 'i' };
432
+ static const symbol s_7_2[1] = { 'o' };
433
+ static const symbol s_7_3[2] = { 'o', 's' };
434
+ static const symbol s_7_4[1] = { 0xE1 };
435
+ static const symbol s_7_5[1] = { 0xED };
436
+ static const symbol s_7_6[1] = { 0xF3 };
423
437
 
424
- static struct among a_7[7] =
438
+ static const struct among a_7[7] =
425
439
  {
426
440
  /* 0 */ { 1, s_7_0, -1, 1, 0},
427
441
  /* 1 */ { 1, s_7_1, -1, 1, 0},
@@ -432,12 +446,12 @@ static struct among a_7[7] =
432
446
  /* 6 */ { 1, s_7_6, -1, 1, 0}
433
447
  };
434
448
 
435
- static symbol s_8_0[1] = { 'e' };
436
- static symbol s_8_1[1] = { 0xE7 };
437
- static symbol s_8_2[1] = { 0xE9 };
438
- static symbol s_8_3[1] = { 0xEA };
449
+ static const symbol s_8_0[1] = { 'e' };
450
+ static const symbol s_8_1[1] = { 0xE7 };
451
+ static const symbol s_8_2[1] = { 0xE9 };
452
+ static const symbol s_8_3[1] = { 0xEA };
439
453
 
440
- static struct among a_8[4] =
454
+ static const struct among a_8[4] =
441
455
  {
442
456
  /* 0 */ { 1, s_8_0, -1, 1, 0},
443
457
  /* 1 */ { 1, s_8_1, -1, 2, 0},
@@ -445,46 +459,45 @@ static struct among a_8[4] =
445
459
  /* 3 */ { 1, s_8_3, -1, 1, 0}
446
460
  };
447
461
 
448
- static unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 19, 12, 2 };
449
-
450
- static symbol s_0[] = { 'a', '~' };
451
- static symbol s_1[] = { 'o', '~' };
452
- static symbol s_2[] = { 0xE3 };
453
- static symbol s_3[] = { 0xF5 };
454
- static symbol s_4[] = { 'l', 'o', 'g' };
455
- static symbol s_5[] = { 'u' };
456
- static symbol s_6[] = { 'e', 'n', 't', 'e' };
457
- static symbol s_7[] = { 'a', 't' };
458
- static symbol s_8[] = { 'a', 't' };
459
- static symbol s_9[] = { 'e' };
460
- static symbol s_10[] = { 'i', 'r' };
461
- static symbol s_11[] = { 'u' };
462
- static symbol s_12[] = { 'g' };
463
- static symbol s_13[] = { 'i' };
464
- static symbol s_14[] = { 'c' };
465
- static symbol s_15[] = { 'c' };
466
- static symbol s_16[] = { 'i' };
467
- static symbol s_17[] = { 'c' };
462
+ static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 19, 12, 2 };
463
+
464
+ static const symbol s_0[] = { 'a', '~' };
465
+ static const symbol s_1[] = { 'o', '~' };
466
+ static const symbol s_2[] = { 0xE3 };
467
+ static const symbol s_3[] = { 0xF5 };
468
+ static const symbol s_4[] = { 'l', 'o', 'g' };
469
+ static const symbol s_5[] = { 'u' };
470
+ static const symbol s_6[] = { 'e', 'n', 't', 'e' };
471
+ static const symbol s_7[] = { 'a', 't' };
472
+ static const symbol s_8[] = { 'a', 't' };
473
+ static const symbol s_9[] = { 'e' };
474
+ static const symbol s_10[] = { 'i', 'r' };
475
+ static const symbol s_11[] = { 'u' };
476
+ static const symbol s_12[] = { 'g' };
477
+ static const symbol s_13[] = { 'i' };
478
+ static const symbol s_14[] = { 'c' };
479
+ static const symbol s_15[] = { 'c' };
480
+ static const symbol s_16[] = { 'i' };
481
+ static const symbol s_17[] = { 'c' };
468
482
 
469
483
  static int r_prelude(struct SN_env * z) {
470
484
  int among_var;
471
485
  while(1) { /* repeat, line 36 */
472
- int c = z->c;
486
+ int c1 = z->c;
473
487
  z->bra = z->c; /* [, line 37 */
488
+ if (z->c >= z->l || (z->p[z->c + 0] != 227 && z->p[z->c + 0] != 245)) among_var = 3; else
474
489
  among_var = find_among(z, a_0, 3); /* substring, line 37 */
475
490
  if (!(among_var)) goto lab0;
476
491
  z->ket = z->c; /* ], line 37 */
477
492
  switch(among_var) {
478
493
  case 0: goto lab0;
479
494
  case 1:
480
- { int ret;
481
- ret = slice_from_s(z, 2, s_0); /* <-, line 38 */
495
+ { int ret = slice_from_s(z, 2, s_0); /* <-, line 38 */
482
496
  if (ret < 0) return ret;
483
497
  }
484
498
  break;
485
499
  case 2:
486
- { int ret;
487
- ret = slice_from_s(z, 2, s_1); /* <-, line 39 */
500
+ { int ret = slice_from_s(z, 2, s_1); /* <-, line 39 */
488
501
  if (ret < 0) return ret;
489
502
  }
490
503
  break;
@@ -495,7 +508,7 @@ static int r_prelude(struct SN_env * z) {
495
508
  }
496
509
  continue;
497
510
  lab0:
498
- z->c = c;
511
+ z->c = c1;
499
512
  break;
500
513
  }
501
514
  return 1;
@@ -505,92 +518,78 @@ static int r_mark_regions(struct SN_env * z) {
505
518
  z->I[0] = z->l;
506
519
  z->I[1] = z->l;
507
520
  z->I[2] = z->l;
508
- { int c = z->c; /* do, line 50 */
509
- { int c = z->c; /* or, line 52 */
510
- if (!(in_grouping(z, g_v, 97, 250))) goto lab2;
511
- { int c = z->c; /* or, line 51 */
512
- if (!(out_grouping(z, g_v, 97, 250))) goto lab4;
513
- while(1) { /* gopast, line 51 */
514
- if (!(in_grouping(z, g_v, 97, 250))) goto lab5;
515
- break;
516
- lab5:
517
- if (z->c >= z->l) goto lab4;
518
- z->c++; /* gopast, line 51 */
521
+ { int c1 = z->c; /* do, line 50 */
522
+ { int c2 = z->c; /* or, line 52 */
523
+ if (in_grouping(z, g_v, 97, 250, 0)) goto lab2;
524
+ { int c3 = z->c; /* or, line 51 */
525
+ if (out_grouping(z, g_v, 97, 250, 0)) goto lab4;
526
+ { /* gopast */ /* grouping v, line 51 */
527
+ int ret = out_grouping(z, g_v, 97, 250, 1);
528
+ if (ret < 0) goto lab4;
529
+ z->c += ret;
519
530
  }
520
531
  goto lab3;
521
532
  lab4:
522
- z->c = c;
523
- if (!(in_grouping(z, g_v, 97, 250))) goto lab2;
524
- while(1) { /* gopast, line 51 */
525
- if (!(out_grouping(z, g_v, 97, 250))) goto lab6;
526
- break;
527
- lab6:
528
- if (z->c >= z->l) goto lab2;
529
- z->c++; /* gopast, line 51 */
533
+ z->c = c3;
534
+ if (in_grouping(z, g_v, 97, 250, 0)) goto lab2;
535
+ { /* gopast */ /* non v, line 51 */
536
+ int ret = in_grouping(z, g_v, 97, 250, 1);
537
+ if (ret < 0) goto lab2;
538
+ z->c += ret;
530
539
  }
531
540
  }
532
541
  lab3:
533
542
  goto lab1;
534
543
  lab2:
535
- z->c = c;
536
- if (!(out_grouping(z, g_v, 97, 250))) goto lab0;
537
- { int c = z->c; /* or, line 53 */
538
- if (!(out_grouping(z, g_v, 97, 250))) goto lab8;
539
- while(1) { /* gopast, line 53 */
540
- if (!(in_grouping(z, g_v, 97, 250))) goto lab9;
541
- break;
542
- lab9:
543
- if (z->c >= z->l) goto lab8;
544
- z->c++; /* gopast, line 53 */
544
+ z->c = c2;
545
+ if (out_grouping(z, g_v, 97, 250, 0)) goto lab0;
546
+ { int c4 = z->c; /* or, line 53 */
547
+ if (out_grouping(z, g_v, 97, 250, 0)) goto lab6;
548
+ { /* gopast */ /* grouping v, line 53 */
549
+ int ret = out_grouping(z, g_v, 97, 250, 1);
550
+ if (ret < 0) goto lab6;
551
+ z->c += ret;
545
552
  }
546
- goto lab7;
547
- lab8:
548
- z->c = c;
549
- if (!(in_grouping(z, g_v, 97, 250))) goto lab0;
553
+ goto lab5;
554
+ lab6:
555
+ z->c = c4;
556
+ if (in_grouping(z, g_v, 97, 250, 0)) goto lab0;
550
557
  if (z->c >= z->l) goto lab0;
551
558
  z->c++; /* next, line 53 */
552
559
  }
553
- lab7:
560
+ lab5:
554
561
  ;
555
562
  }
556
563
  lab1:
557
564
  z->I[0] = z->c; /* setmark pV, line 54 */
558
565
  lab0:
559
- z->c = c;
566
+ z->c = c1;
560
567
  }
561
- { int c = z->c; /* do, line 56 */
562
- while(1) { /* gopast, line 57 */
563
- if (!(in_grouping(z, g_v, 97, 250))) goto lab11;
564
- break;
565
- lab11:
566
- if (z->c >= z->l) goto lab10;
567
- z->c++; /* gopast, line 57 */
568
+ { int c5 = z->c; /* do, line 56 */
569
+ { /* gopast */ /* grouping v, line 57 */
570
+ int ret = out_grouping(z, g_v, 97, 250, 1);
571
+ if (ret < 0) goto lab7;
572
+ z->c += ret;
568
573
  }
569
- while(1) { /* gopast, line 57 */
570
- if (!(out_grouping(z, g_v, 97, 250))) goto lab12;
571
- break;
572
- lab12:
573
- if (z->c >= z->l) goto lab10;
574
- z->c++; /* gopast, line 57 */
574
+ { /* gopast */ /* non v, line 57 */
575
+ int ret = in_grouping(z, g_v, 97, 250, 1);
576
+ if (ret < 0) goto lab7;
577
+ z->c += ret;
575
578
  }
576
579
  z->I[1] = z->c; /* setmark p1, line 57 */
577
- while(1) { /* gopast, line 58 */
578
- if (!(in_grouping(z, g_v, 97, 250))) goto lab13;
579
- break;
580
- lab13:
581
- if (z->c >= z->l) goto lab10;
582
- z->c++; /* gopast, line 58 */
580
+ { /* gopast */ /* grouping v, line 58 */
581
+ int ret = out_grouping(z, g_v, 97, 250, 1);
582
+ if (ret < 0) goto lab7;
583
+ z->c += ret;
583
584
  }
584
- while(1) { /* gopast, line 58 */
585
- if (!(out_grouping(z, g_v, 97, 250))) goto lab14;
586
- break;
587
- lab14:
588
- if (z->c >= z->l) goto lab10;
589
- z->c++; /* gopast, line 58 */
585
+ { /* gopast */ /* non v, line 58 */
586
+ int ret = in_grouping(z, g_v, 97, 250, 1);
587
+ if (ret < 0) goto lab7;
588
+ z->c += ret;
590
589
  }
591
590
  z->I[2] = z->c; /* setmark p2, line 58 */
592
- lab10:
593
- z->c = c;
591
+ lab7:
592
+ z->c = c5;
594
593
  }
595
594
  return 1;
596
595
  }
@@ -598,22 +597,21 @@ static int r_mark_regions(struct SN_env * z) {
598
597
  static int r_postlude(struct SN_env * z) {
599
598
  int among_var;
600
599
  while(1) { /* repeat, line 62 */
601
- int c = z->c;
600
+ int c1 = z->c;
602
601
  z->bra = z->c; /* [, line 63 */
602
+ if (z->c + 1 >= z->l || z->p[z->c + 1] != 126) among_var = 3; else
603
603
  among_var = find_among(z, a_1, 3); /* substring, line 63 */
604
604
  if (!(among_var)) goto lab0;
605
605
  z->ket = z->c; /* ], line 63 */
606
606
  switch(among_var) {
607
607
  case 0: goto lab0;
608
608
  case 1:
609
- { int ret;
610
- ret = slice_from_s(z, 1, s_2); /* <-, line 64 */
609
+ { int ret = slice_from_s(z, 1, s_2); /* <-, line 64 */
611
610
  if (ret < 0) return ret;
612
611
  }
613
612
  break;
614
613
  case 2:
615
- { int ret;
616
- ret = slice_from_s(z, 1, s_3); /* <-, line 65 */
614
+ { int ret = slice_from_s(z, 1, s_3); /* <-, line 65 */
617
615
  if (ret < 0) return ret;
618
616
  }
619
617
  break;
@@ -624,7 +622,7 @@ static int r_postlude(struct SN_env * z) {
624
622
  }
625
623
  continue;
626
624
  lab0:
627
- z->c = c;
625
+ z->c = c1;
628
626
  break;
629
627
  }
630
628
  return 1;
@@ -648,6 +646,7 @@ static int r_R2(struct SN_env * z) {
648
646
  static int r_standard_suffix(struct SN_env * z) {
649
647
  int among_var;
650
648
  z->ket = z->c; /* [, line 77 */
649
+ if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((839714 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
651
650
  among_var = find_among_b(z, a_5, 45); /* substring, line 77 */
652
651
  if (!(among_var)) return 0;
653
652
  z->bra = z->c; /* ], line 77 */
@@ -658,8 +657,7 @@ static int r_standard_suffix(struct SN_env * z) {
658
657
  if (ret == 0) return 0; /* call R2, line 93 */
659
658
  if (ret < 0) return ret;
660
659
  }
661
- { int ret;
662
- ret = slice_del(z); /* delete, line 93 */
660
+ { int ret = slice_del(z); /* delete, line 93 */
663
661
  if (ret < 0) return ret;
664
662
  }
665
663
  break;
@@ -668,8 +666,7 @@ static int r_standard_suffix(struct SN_env * z) {
668
666
  if (ret == 0) return 0; /* call R2, line 98 */
669
667
  if (ret < 0) return ret;
670
668
  }
671
- { int ret;
672
- ret = slice_from_s(z, 3, s_4); /* <-, line 98 */
669
+ { int ret = slice_from_s(z, 3, s_4); /* <-, line 98 */
673
670
  if (ret < 0) return ret;
674
671
  }
675
672
  break;
@@ -678,8 +675,7 @@ static int r_standard_suffix(struct SN_env * z) {
678
675
  if (ret == 0) return 0; /* call R2, line 102 */
679
676
  if (ret < 0) return ret;
680
677
  }
681
- { int ret;
682
- ret = slice_from_s(z, 1, s_5); /* <-, line 102 */
678
+ { int ret = slice_from_s(z, 1, s_5); /* <-, line 102 */
683
679
  if (ret < 0) return ret;
684
680
  }
685
681
  break;
@@ -688,8 +684,7 @@ static int r_standard_suffix(struct SN_env * z) {
688
684
  if (ret == 0) return 0; /* call R2, line 106 */
689
685
  if (ret < 0) return ret;
690
686
  }
691
- { int ret;
692
- ret = slice_from_s(z, 4, s_6); /* <-, line 106 */
687
+ { int ret = slice_from_s(z, 4, s_6); /* <-, line 106 */
693
688
  if (ret < 0) return ret;
694
689
  }
695
690
  break;
@@ -698,35 +693,33 @@ static int r_standard_suffix(struct SN_env * z) {
698
693
  if (ret == 0) return 0; /* call R1, line 110 */
699
694
  if (ret < 0) return ret;
700
695
  }
701
- { int ret;
702
- ret = slice_del(z); /* delete, line 110 */
696
+ { int ret = slice_del(z); /* delete, line 110 */
703
697
  if (ret < 0) return ret;
704
698
  }
705
- { int m = z->l - z->c; (void) m; /* try, line 111 */
699
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 111 */
706
700
  z->ket = z->c; /* [, line 112 */
701
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4718616 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m_keep; goto lab0; }
707
702
  among_var = find_among_b(z, a_2, 4); /* substring, line 112 */
708
- if (!(among_var)) { z->c = z->l - m; goto lab0; }
703
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab0; }
709
704
  z->bra = z->c; /* ], line 112 */
710
705
  { int ret = r_R2(z);
711
- if (ret == 0) { z->c = z->l - m; goto lab0; } /* call R2, line 112 */
706
+ if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call R2, line 112 */
712
707
  if (ret < 0) return ret;
713
708
  }
714
- { int ret;
715
- ret = slice_del(z); /* delete, line 112 */
709
+ { int ret = slice_del(z); /* delete, line 112 */
716
710
  if (ret < 0) return ret;
717
711
  }
718
712
  switch(among_var) {
719
- case 0: { z->c = z->l - m; goto lab0; }
713
+ case 0: { z->c = z->l - m_keep; goto lab0; }
720
714
  case 1:
721
715
  z->ket = z->c; /* [, line 113 */
722
- if (!(eq_s_b(z, 2, s_7))) { z->c = z->l - m; goto lab0; }
716
+ if (!(eq_s_b(z, 2, s_7))) { z->c = z->l - m_keep; goto lab0; }
723
717
  z->bra = z->c; /* ], line 113 */
724
718
  { int ret = r_R2(z);
725
- if (ret == 0) { z->c = z->l - m; goto lab0; } /* call R2, line 113 */
719
+ if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call R2, line 113 */
726
720
  if (ret < 0) return ret;
727
721
  }
728
- { int ret;
729
- ret = slice_del(z); /* delete, line 113 */
722
+ { int ret = slice_del(z); /* delete, line 113 */
730
723
  if (ret < 0) return ret;
731
724
  }
732
725
  break;
@@ -740,24 +733,23 @@ static int r_standard_suffix(struct SN_env * z) {
740
733
  if (ret == 0) return 0; /* call R2, line 122 */
741
734
  if (ret < 0) return ret;
742
735
  }
743
- { int ret;
744
- ret = slice_del(z); /* delete, line 122 */
736
+ { int ret = slice_del(z); /* delete, line 122 */
745
737
  if (ret < 0) return ret;
746
738
  }
747
- { int m = z->l - z->c; (void) m; /* try, line 123 */
739
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 123 */
748
740
  z->ket = z->c; /* [, line 124 */
741
+ if (z->c - 3 <= z->lb || (z->p[z->c - 1] != 101 && z->p[z->c - 1] != 108)) { z->c = z->l - m_keep; goto lab1; }
749
742
  among_var = find_among_b(z, a_3, 3); /* substring, line 124 */
750
- if (!(among_var)) { z->c = z->l - m; goto lab1; }
743
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab1; }
751
744
  z->bra = z->c; /* ], line 124 */
752
745
  switch(among_var) {
753
- case 0: { z->c = z->l - m; goto lab1; }
746
+ case 0: { z->c = z->l - m_keep; goto lab1; }
754
747
  case 1:
755
748
  { int ret = r_R2(z);
756
- if (ret == 0) { z->c = z->l - m; goto lab1; } /* call R2, line 127 */
749
+ if (ret == 0) { z->c = z->l - m_keep; goto lab1; } /* call R2, line 127 */
757
750
  if (ret < 0) return ret;
758
751
  }
759
- { int ret;
760
- ret = slice_del(z); /* delete, line 127 */
752
+ { int ret = slice_del(z); /* delete, line 127 */
761
753
  if (ret < 0) return ret;
762
754
  }
763
755
  break;
@@ -771,24 +763,23 @@ static int r_standard_suffix(struct SN_env * z) {
771
763
  if (ret == 0) return 0; /* call R2, line 134 */
772
764
  if (ret < 0) return ret;
773
765
  }
774
- { int ret;
775
- ret = slice_del(z); /* delete, line 134 */
766
+ { int ret = slice_del(z); /* delete, line 134 */
776
767
  if (ret < 0) return ret;
777
768
  }
778
- { int m = z->l - z->c; (void) m; /* try, line 135 */
769
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 135 */
779
770
  z->ket = z->c; /* [, line 136 */
771
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4198408 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m_keep; goto lab2; }
780
772
  among_var = find_among_b(z, a_4, 3); /* substring, line 136 */
781
- if (!(among_var)) { z->c = z->l - m; goto lab2; }
773
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab2; }
782
774
  z->bra = z->c; /* ], line 136 */
783
775
  switch(among_var) {
784
- case 0: { z->c = z->l - m; goto lab2; }
776
+ case 0: { z->c = z->l - m_keep; goto lab2; }
785
777
  case 1:
786
778
  { int ret = r_R2(z);
787
- if (ret == 0) { z->c = z->l - m; goto lab2; } /* call R2, line 139 */
779
+ if (ret == 0) { z->c = z->l - m_keep; goto lab2; } /* call R2, line 139 */
788
780
  if (ret < 0) return ret;
789
781
  }
790
- { int ret;
791
- ret = slice_del(z); /* delete, line 139 */
782
+ { int ret = slice_del(z); /* delete, line 139 */
792
783
  if (ret < 0) return ret;
793
784
  }
794
785
  break;
@@ -802,20 +793,18 @@ static int r_standard_suffix(struct SN_env * z) {
802
793
  if (ret == 0) return 0; /* call R2, line 146 */
803
794
  if (ret < 0) return ret;
804
795
  }
805
- { int ret;
806
- ret = slice_del(z); /* delete, line 146 */
796
+ { int ret = slice_del(z); /* delete, line 146 */
807
797
  if (ret < 0) return ret;
808
798
  }
809
- { int m = z->l - z->c; (void) m; /* try, line 147 */
799
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 147 */
810
800
  z->ket = z->c; /* [, line 148 */
811
- if (!(eq_s_b(z, 2, s_8))) { z->c = z->l - m; goto lab3; }
801
+ if (!(eq_s_b(z, 2, s_8))) { z->c = z->l - m_keep; goto lab3; }
812
802
  z->bra = z->c; /* ], line 148 */
813
803
  { int ret = r_R2(z);
814
- if (ret == 0) { z->c = z->l - m; goto lab3; } /* call R2, line 148 */
804
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 148 */
815
805
  if (ret < 0) return ret;
816
806
  }
817
- { int ret;
818
- ret = slice_del(z); /* delete, line 148 */
807
+ { int ret = slice_del(z); /* delete, line 148 */
819
808
  if (ret < 0) return ret;
820
809
  }
821
810
  lab3:
@@ -828,8 +817,7 @@ static int r_standard_suffix(struct SN_env * z) {
828
817
  if (ret < 0) return ret;
829
818
  }
830
819
  if (!(eq_s_b(z, 1, s_9))) return 0;
831
- { int ret;
832
- ret = slice_from_s(z, 2, s_10); /* <-, line 154 */
820
+ { int ret = slice_from_s(z, 2, s_10); /* <-, line 154 */
833
821
  if (ret < 0) return ret;
834
822
  }
835
823
  break;
@@ -839,26 +827,25 @@ static int r_standard_suffix(struct SN_env * z) {
839
827
 
840
828
  static int r_verb_suffix(struct SN_env * z) {
841
829
  int among_var;
842
- { int m3; /* setlimit, line 159 */
843
- int m = z->l - z->c; (void) m;
830
+ { int mlimit; /* setlimit, line 159 */
831
+ int m1 = z->l - z->c; (void)m1;
844
832
  if (z->c < z->I[0]) return 0;
845
833
  z->c = z->I[0]; /* tomark, line 159 */
846
- m3 = z->lb; z->lb = z->c;
847
- z->c = z->l - m;
834
+ mlimit = z->lb; z->lb = z->c;
835
+ z->c = z->l - m1;
848
836
  z->ket = z->c; /* [, line 160 */
849
837
  among_var = find_among_b(z, a_6, 120); /* substring, line 160 */
850
- if (!(among_var)) { z->lb = m3; return 0; }
838
+ if (!(among_var)) { z->lb = mlimit; return 0; }
851
839
  z->bra = z->c; /* ], line 160 */
852
840
  switch(among_var) {
853
- case 0: { z->lb = m3; return 0; }
841
+ case 0: { z->lb = mlimit; return 0; }
854
842
  case 1:
855
- { int ret;
856
- ret = slice_del(z); /* delete, line 179 */
843
+ { int ret = slice_del(z); /* delete, line 179 */
857
844
  if (ret < 0) return ret;
858
845
  }
859
846
  break;
860
847
  }
861
- z->lb = m3;
848
+ z->lb = mlimit;
862
849
  }
863
850
  return 1;
864
851
  }
@@ -876,8 +863,7 @@ static int r_residual_suffix(struct SN_env * z) {
876
863
  if (ret == 0) return 0; /* call RV, line 187 */
877
864
  if (ret < 0) return ret;
878
865
  }
879
- { int ret;
880
- ret = slice_del(z); /* delete, line 187 */
866
+ { int ret = slice_del(z); /* delete, line 187 */
881
867
  if (ret < 0) return ret;
882
868
  }
883
869
  break;
@@ -898,12 +884,11 @@ static int r_residual_form(struct SN_env * z) {
898
884
  if (ret == 0) return 0; /* call RV, line 194 */
899
885
  if (ret < 0) return ret;
900
886
  }
901
- { int ret;
902
- ret = slice_del(z); /* delete, line 194 */
887
+ { int ret = slice_del(z); /* delete, line 194 */
903
888
  if (ret < 0) return ret;
904
889
  }
905
890
  z->ket = z->c; /* [, line 194 */
906
- { int m = z->l - z->c; (void) m; /* or, line 194 */
891
+ { int m1 = z->l - z->c; (void)m1; /* or, line 194 */
907
892
  if (!(eq_s_b(z, 1, s_11))) goto lab1;
908
893
  z->bra = z->c; /* ], line 194 */
909
894
  { int m_test = z->l - z->c; /* test, line 194 */
@@ -912,7 +897,7 @@ static int r_residual_form(struct SN_env * z) {
912
897
  }
913
898
  goto lab0;
914
899
  lab1:
915
- z->c = z->l - m;
900
+ z->c = z->l - m1;
916
901
  if (!(eq_s_b(z, 1, s_13))) return 0;
917
902
  z->bra = z->c; /* ], line 195 */
918
903
  { int m_test = z->l - z->c; /* test, line 195 */
@@ -925,14 +910,12 @@ static int r_residual_form(struct SN_env * z) {
925
910
  if (ret == 0) return 0; /* call RV, line 195 */
926
911
  if (ret < 0) return ret;
927
912
  }
928
- { int ret;
929
- ret = slice_del(z); /* delete, line 195 */
913
+ { int ret = slice_del(z); /* delete, line 195 */
930
914
  if (ret < 0) return ret;
931
915
  }
932
916
  break;
933
917
  case 2:
934
- { int ret;
935
- ret = slice_from_s(z, 1, s_15); /* <-, line 196 */
918
+ { int ret = slice_from_s(z, 1, s_15); /* <-, line 196 */
936
919
  if (ret < 0) return ret;
937
920
  }
938
921
  break;
@@ -941,43 +924,43 @@ static int r_residual_form(struct SN_env * z) {
941
924
  }
942
925
 
943
926
  extern int portuguese_ISO_8859_1_stem(struct SN_env * z) {
944
- { int c = z->c; /* do, line 202 */
927
+ { int c1 = z->c; /* do, line 202 */
945
928
  { int ret = r_prelude(z);
946
929
  if (ret == 0) goto lab0; /* call prelude, line 202 */
947
930
  if (ret < 0) return ret;
948
931
  }
949
932
  lab0:
950
- z->c = c;
933
+ z->c = c1;
951
934
  }
952
- { int c = z->c; /* do, line 203 */
935
+ { int c2 = z->c; /* do, line 203 */
953
936
  { int ret = r_mark_regions(z);
954
937
  if (ret == 0) goto lab1; /* call mark_regions, line 203 */
955
938
  if (ret < 0) return ret;
956
939
  }
957
940
  lab1:
958
- z->c = c;
941
+ z->c = c2;
959
942
  }
960
943
  z->lb = z->c; z->c = z->l; /* backwards, line 204 */
961
944
 
962
- { int m = z->l - z->c; (void) m; /* do, line 205 */
963
- { int m = z->l - z->c; (void) m; /* or, line 209 */
964
- { int m = z->l - z->c; (void) m; /* and, line 207 */
965
- { int m = z->l - z->c; (void) m; /* or, line 206 */
945
+ { int m3 = z->l - z->c; (void)m3; /* do, line 205 */
946
+ { int m4 = z->l - z->c; (void)m4; /* or, line 209 */
947
+ { int m5 = z->l - z->c; (void)m5; /* and, line 207 */
948
+ { int m6 = z->l - z->c; (void)m6; /* or, line 206 */
966
949
  { int ret = r_standard_suffix(z);
967
950
  if (ret == 0) goto lab6; /* call standard_suffix, line 206 */
968
951
  if (ret < 0) return ret;
969
952
  }
970
953
  goto lab5;
971
954
  lab6:
972
- z->c = z->l - m;
955
+ z->c = z->l - m6;
973
956
  { int ret = r_verb_suffix(z);
974
957
  if (ret == 0) goto lab4; /* call verb_suffix, line 206 */
975
958
  if (ret < 0) return ret;
976
959
  }
977
960
  }
978
961
  lab5:
979
- z->c = z->l - m;
980
- { int m = z->l - z->c; (void) m; /* do, line 207 */
962
+ z->c = z->l - m5;
963
+ { int m7 = z->l - z->c; (void)m7; /* do, line 207 */
981
964
  z->ket = z->c; /* [, line 207 */
982
965
  if (!(eq_s_b(z, 1, s_16))) goto lab7;
983
966
  z->bra = z->c; /* ], line 207 */
@@ -989,17 +972,16 @@ extern int portuguese_ISO_8859_1_stem(struct SN_env * z) {
989
972
  if (ret == 0) goto lab7; /* call RV, line 207 */
990
973
  if (ret < 0) return ret;
991
974
  }
992
- { int ret;
993
- ret = slice_del(z); /* delete, line 207 */
975
+ { int ret = slice_del(z); /* delete, line 207 */
994
976
  if (ret < 0) return ret;
995
977
  }
996
978
  lab7:
997
- z->c = z->l - m;
979
+ z->c = z->l - m7;
998
980
  }
999
981
  }
1000
982
  goto lab3;
1001
983
  lab4:
1002
- z->c = z->l - m;
984
+ z->c = z->l - m4;
1003
985
  { int ret = r_residual_suffix(z);
1004
986
  if (ret == 0) goto lab2; /* call residual_suffix, line 209 */
1005
987
  if (ret < 0) return ret;
@@ -1007,29 +989,29 @@ extern int portuguese_ISO_8859_1_stem(struct SN_env * z) {
1007
989
  }
1008
990
  lab3:
1009
991
  lab2:
1010
- z->c = z->l - m;
992
+ z->c = z->l - m3;
1011
993
  }
1012
- { int m = z->l - z->c; (void) m; /* do, line 211 */
994
+ { int m8 = z->l - z->c; (void)m8; /* do, line 211 */
1013
995
  { int ret = r_residual_form(z);
1014
996
  if (ret == 0) goto lab8; /* call residual_form, line 211 */
1015
997
  if (ret < 0) return ret;
1016
998
  }
1017
999
  lab8:
1018
- z->c = z->l - m;
1000
+ z->c = z->l - m8;
1019
1001
  }
1020
1002
  z->c = z->lb;
1021
- { int c = z->c; /* do, line 213 */
1003
+ { int c9 = z->c; /* do, line 213 */
1022
1004
  { int ret = r_postlude(z);
1023
1005
  if (ret == 0) goto lab9; /* call postlude, line 213 */
1024
1006
  if (ret < 0) return ret;
1025
1007
  }
1026
1008
  lab9:
1027
- z->c = c;
1009
+ z->c = c9;
1028
1010
  }
1029
1011
  return 1;
1030
1012
  }
1031
1013
 
1032
1014
  extern struct SN_env * portuguese_ISO_8859_1_create_env(void) { return SN_create_env(0, 3, 0); }
1033
1015
 
1034
- extern void portuguese_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z); }
1016
+ extern void portuguese_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1035
1017