isomorfeus-ferret 0.12.4 → 0.12.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (216) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +612 -612
  3. data/README.md +77 -48
  4. data/ext/isomorfeus_ferret_ext/bm_hash.c +9 -6
  5. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +4 -2
  6. data/ext/isomorfeus_ferret_ext/brotli_common_constants.c +15 -0
  7. data/ext/isomorfeus_ferret_ext/brotli_common_constants.h +200 -0
  8. data/ext/isomorfeus_ferret_ext/brotli_common_context.c +156 -0
  9. data/ext/isomorfeus_ferret_ext/brotli_common_context.h +113 -0
  10. data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.c +5914 -0
  11. data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.h +64 -0
  12. data/ext/isomorfeus_ferret_ext/brotli_common_platform.c +22 -0
  13. data/ext/isomorfeus_ferret_ext/brotli_common_platform.h +594 -0
  14. data/ext/isomorfeus_ferret_ext/brotli_common_transform.c +291 -0
  15. data/ext/isomorfeus_ferret_ext/brotli_common_transform.h +85 -0
  16. data/ext/isomorfeus_ferret_ext/brotli_common_version.h +26 -0
  17. data/ext/isomorfeus_ferret_ext/brotli_dec_bit_reader.c +76 -0
  18. data/ext/isomorfeus_ferret_ext/brotli_dec_bit_reader.h +351 -0
  19. data/ext/isomorfeus_ferret_ext/brotli_dec_decode.c +2608 -0
  20. data/ext/isomorfeus_ferret_ext/brotli_dec_huffman.c +339 -0
  21. data/ext/isomorfeus_ferret_ext/brotli_dec_huffman.h +121 -0
  22. data/ext/isomorfeus_ferret_ext/brotli_dec_prefix.h +732 -0
  23. data/ext/isomorfeus_ferret_ext/brotli_dec_state.c +159 -0
  24. data/ext/isomorfeus_ferret_ext/brotli_dec_state.h +365 -0
  25. data/ext/isomorfeus_ferret_ext/brotli_decode.h +344 -0
  26. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references.c +145 -0
  27. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references.h +39 -0
  28. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_hq.c +843 -0
  29. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_hq.h +95 -0
  30. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_inc.h +163 -0
  31. data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost.c +35 -0
  32. data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost.h +63 -0
  33. data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost_inc.h +127 -0
  34. data/ext/isomorfeus_ferret_ext/brotli_enc_block_encoder_inc.h +34 -0
  35. data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter.c +194 -0
  36. data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter.h +51 -0
  37. data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter_inc.h +440 -0
  38. data/ext/isomorfeus_ferret_ext/brotli_enc_brotli_bit_stream.c +1314 -0
  39. data/ext/isomorfeus_ferret_ext/brotli_enc_brotli_bit_stream.h +84 -0
  40. data/ext/isomorfeus_ferret_ext/brotli_enc_cluster.c +56 -0
  41. data/ext/isomorfeus_ferret_ext/brotli_enc_cluster.h +48 -0
  42. data/ext/isomorfeus_ferret_ext/brotli_enc_cluster_inc.h +320 -0
  43. data/ext/isomorfeus_ferret_ext/brotli_enc_command.c +28 -0
  44. data/ext/isomorfeus_ferret_ext/brotli_enc_command.h +190 -0
  45. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment.c +790 -0
  46. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment.h +61 -0
  47. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment_two_pass.c +645 -0
  48. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment_two_pass.h +54 -0
  49. data/ext/isomorfeus_ferret_ext/brotli_enc_dictionary_hash.c +1846 -0
  50. data/ext/isomorfeus_ferret_ext/brotli_enc_dictionary_hash.h +25 -0
  51. data/ext/isomorfeus_ferret_ext/brotli_enc_encode.c +1927 -0
  52. data/ext/isomorfeus_ferret_ext/brotli_enc_encoder_dict.c +33 -0
  53. data/ext/isomorfeus_ferret_ext/brotli_enc_encoder_dict.h +43 -0
  54. data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode.c +503 -0
  55. data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode.h +122 -0
  56. data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode_static.h +539 -0
  57. data/ext/isomorfeus_ferret_ext/brotli_enc_fast_log.c +105 -0
  58. data/ext/isomorfeus_ferret_ext/brotli_enc_fast_log.h +66 -0
  59. data/ext/isomorfeus_ferret_ext/brotli_enc_find_match_length.h +79 -0
  60. data/ext/isomorfeus_ferret_ext/brotli_enc_hash.h +488 -0
  61. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_composite_inc.h +125 -0
  62. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_forgetful_chain_inc.h +293 -0
  63. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match64_inc.h +267 -0
  64. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match_inc.h +262 -0
  65. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match_quickly_inc.h +266 -0
  66. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_rolling_inc.h +212 -0
  67. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_to_binary_tree_inc.h +329 -0
  68. data/ext/isomorfeus_ferret_ext/brotli_enc_histogram.c +100 -0
  69. data/ext/isomorfeus_ferret_ext/brotli_enc_histogram.h +63 -0
  70. data/ext/isomorfeus_ferret_ext/brotli_enc_histogram_inc.h +51 -0
  71. data/ext/isomorfeus_ferret_ext/brotli_enc_literal_cost.c +175 -0
  72. data/ext/isomorfeus_ferret_ext/brotli_enc_literal_cost.h +30 -0
  73. data/ext/isomorfeus_ferret_ext/brotli_enc_memory.c +170 -0
  74. data/ext/isomorfeus_ferret_ext/brotli_enc_memory.h +114 -0
  75. data/ext/isomorfeus_ferret_ext/brotli_enc_metablock.c +663 -0
  76. data/ext/isomorfeus_ferret_ext/brotli_enc_metablock.h +105 -0
  77. data/ext/isomorfeus_ferret_ext/brotli_enc_metablock_inc.h +183 -0
  78. data/ext/isomorfeus_ferret_ext/brotli_enc_params.h +46 -0
  79. data/ext/isomorfeus_ferret_ext/brotli_enc_prefix.h +53 -0
  80. data/ext/isomorfeus_ferret_ext/brotli_enc_quality.h +165 -0
  81. data/ext/isomorfeus_ferret_ext/brotli_enc_ringbuffer.h +167 -0
  82. data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict.c +486 -0
  83. data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict.h +40 -0
  84. data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict_lut.h +5864 -0
  85. data/ext/isomorfeus_ferret_ext/brotli_enc_utf8_util.c +85 -0
  86. data/ext/isomorfeus_ferret_ext/brotli_enc_utf8_util.h +32 -0
  87. data/ext/isomorfeus_ferret_ext/brotli_enc_write_bits.h +87 -0
  88. data/ext/isomorfeus_ferret_ext/brotli_encode.h +448 -0
  89. data/ext/isomorfeus_ferret_ext/brotli_port.h +288 -0
  90. data/ext/isomorfeus_ferret_ext/brotli_types.h +83 -0
  91. data/ext/isomorfeus_ferret_ext/frb_index.c +35 -4
  92. data/ext/isomorfeus_ferret_ext/frb_store.c +34 -5
  93. data/ext/isomorfeus_ferret_ext/frt_document.h +1 -0
  94. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +1 -0
  95. data/ext/isomorfeus_ferret_ext/frt_index.c +174 -25
  96. data/ext/isomorfeus_ferret_ext/frt_index.h +6 -3
  97. data/ext/isomorfeus_ferret_ext/frt_posh.h +11 -19
  98. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +1844 -1911
  99. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +12 -15
  100. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +1 -0
  101. data/ext/isomorfeus_ferret_ext/frt_scanner.c +1 -0
  102. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +1 -0
  103. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +1 -0
  104. data/ext/isomorfeus_ferret_ext/frt_search.h +1 -1
  105. data/ext/isomorfeus_ferret_ext/libstemmer.c +14 -11
  106. data/ext/isomorfeus_ferret_ext/libstemmer.h +4 -9
  107. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +1167 -0
  108. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +6 -0
  109. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +1433 -0
  110. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +6 -0
  111. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +120 -143
  112. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +1 -2
  113. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +217 -237
  114. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +1 -1
  115. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +377 -432
  116. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +1 -1
  117. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +298 -342
  118. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +1 -2
  119. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +530 -524
  120. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +1 -1
  121. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +201 -214
  122. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +1 -1
  123. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1 -1
  124. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +394 -0
  125. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +6 -0
  126. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +457 -0
  127. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +6 -0
  128. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +396 -439
  129. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +1 -1
  130. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +104 -128
  131. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +1 -1
  132. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +242 -273
  133. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +1 -1
  134. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +406 -461
  135. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +1 -2
  136. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +405 -456
  137. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +1 -1
  138. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +108 -126
  139. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +1 -1
  140. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +849 -0
  141. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +6 -0
  142. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +373 -405
  143. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +1 -1
  144. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +288 -305
  145. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +1 -1
  146. data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.c +1651 -0
  147. data/ext/isomorfeus_ferret_ext/stem_UTF_8_arabic.h +6 -0
  148. data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.c +546 -0
  149. data/ext/isomorfeus_ferret_ext/stem_UTF_8_armenian.h +6 -0
  150. data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.c +1171 -0
  151. data/ext/isomorfeus_ferret_ext/stem_UTF_8_basque.h +6 -0
  152. data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.c +1436 -0
  153. data/ext/isomorfeus_ferret_ext/stem_UTF_8_catalan.h +6 -0
  154. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +121 -141
  155. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +1 -1
  156. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +221 -241
  157. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +1 -1
  158. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +381 -431
  159. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +1 -1
  160. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +300 -345
  161. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +1 -1
  162. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +518 -511
  163. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +1 -1
  164. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +201 -209
  165. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +1 -1
  166. data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.c +3660 -0
  167. data/ext/isomorfeus_ferret_ext/stem_UTF_8_greek.h +6 -0
  168. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.c +309 -0
  169. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hindi.h +6 -0
  170. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +306 -671
  171. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +1 -1
  172. data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.c +394 -0
  173. data/ext/isomorfeus_ferret_ext/stem_UTF_8_indonesian.h +6 -0
  174. data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.c +457 -0
  175. data/ext/isomorfeus_ferret_ext/stem_UTF_8_irish.h +6 -0
  176. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +400 -442
  177. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +1 -1
  178. data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.c +824 -0
  179. data/ext/isomorfeus_ferret_ext/stem_UTF_8_lithuanian.h +6 -0
  180. data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.c +408 -0
  181. data/ext/isomorfeus_ferret_ext/stem_UTF_8_nepali.h +6 -0
  182. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +105 -127
  183. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +1 -1
  184. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +245 -276
  185. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +1 -1
  186. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +409 -464
  187. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +1 -1
  188. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +376 -408
  189. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +1 -1
  190. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +272 -287
  191. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +1 -1
  192. data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.c +6530 -0
  193. data/ext/isomorfeus_ferret_ext/stem_UTF_8_serbian.h +6 -0
  194. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +407 -458
  195. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +1 -1
  196. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +110 -125
  197. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +1 -1
  198. data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.c +1865 -0
  199. data/ext/isomorfeus_ferret_ext/stem_UTF_8_tamil.h +6 -0
  200. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +698 -806
  201. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +1 -1
  202. data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.c +1220 -0
  203. data/ext/isomorfeus_ferret_ext/stem_UTF_8_yiddish.h +6 -0
  204. data/ext/isomorfeus_ferret_ext/stem_api.c +1 -9
  205. data/ext/isomorfeus_ferret_ext/stem_api.h +1 -3
  206. data/ext/isomorfeus_ferret_ext/stem_header.h +30 -26
  207. data/ext/isomorfeus_ferret_ext/stem_modules.h +113 -26
  208. data/ext/isomorfeus_ferret_ext/stem_modules.txt +18 -5
  209. data/ext/isomorfeus_ferret_ext/stem_utilities.c +167 -132
  210. data/ext/isomorfeus_ferret_ext/test.c +7 -1
  211. data/ext/isomorfeus_ferret_ext/test_fields.c +57 -45
  212. data/ext/isomorfeus_ferret_ext/test_index.c +4 -1
  213. data/ext/isomorfeus_ferret_ext/test_search.c +0 -1
  214. data/lib/isomorfeus/ferret/version.rb +1 -1
  215. metadata +125 -5
  216. data/ext/isomorfeus_ferret_ext/q_parser.y +0 -1366
@@ -1,5 +1,4 @@
1
-
2
- /* This file was generated automatically by the Snowball to ANSI C compiler */
1
+ /* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
3
2
 
4
3
  #include "stem_header.h"
5
4
 
@@ -27,21 +26,27 @@ static const symbol s_0_2[3] = { 't', 'a', 'p' };
27
26
 
28
27
  static const struct among a_0[3] =
29
28
  {
30
- /* 0 */ { 3, s_0_0, -1, -1, 0},
31
- /* 1 */ { 3, s_0_1, -1, -1, 0},
32
- /* 2 */ { 3, s_0_2, -1, -1, 0}
29
+ { 3, s_0_0, -1, -1, 0},
30
+ { 3, s_0_1, -1, -1, 0},
31
+ { 3, s_0_2, -1, -1, 0}
33
32
  };
34
33
 
35
- static const symbol s_1_1[1] = { 'I' };
36
- static const symbol s_1_2[1] = { 'U' };
37
- static const symbol s_1_3[1] = { 'Y' };
34
+ static const symbol s_1_1[1] = { 'H' };
35
+ static const symbol s_1_2[2] = { 'H', 'e' };
36
+ static const symbol s_1_3[2] = { 'H', 'i' };
37
+ static const symbol s_1_4[1] = { 'I' };
38
+ static const symbol s_1_5[1] = { 'U' };
39
+ static const symbol s_1_6[1] = { 'Y' };
38
40
 
39
- static const struct among a_1[4] =
41
+ static const struct among a_1[7] =
40
42
  {
41
- /* 0 */ { 0, 0, -1, 4, 0},
42
- /* 1 */ { 1, s_1_1, 0, 1, 0},
43
- /* 2 */ { 1, s_1_2, 0, 2, 0},
44
- /* 3 */ { 1, s_1_3, 0, 3, 0}
43
+ { 0, 0, -1, 7, 0},
44
+ { 1, s_1_1, 0, 6, 0},
45
+ { 2, s_1_2, 1, 4, 0},
46
+ { 2, s_1_3, 1, 5, 0},
47
+ { 1, s_1_4, 0, 1, 0},
48
+ { 1, s_1_5, 0, 2, 0},
49
+ { 1, s_1_6, 0, 3, 0}
45
50
  };
46
51
 
47
52
  static const symbol s_2_0[3] = { 'i', 'q', 'U' };
@@ -53,12 +58,12 @@ static const symbol s_2_5[2] = { 'i', 'v' };
53
58
 
54
59
  static const struct among a_2[6] =
55
60
  {
56
- /* 0 */ { 3, s_2_0, -1, 3, 0},
57
- /* 1 */ { 3, s_2_1, -1, 3, 0},
58
- /* 2 */ { 3, s_2_2, -1, 4, 0},
59
- /* 3 */ { 3, s_2_3, -1, 4, 0},
60
- /* 4 */ { 3, s_2_4, -1, 2, 0},
61
- /* 5 */ { 2, s_2_5, -1, 1, 0}
61
+ { 3, s_2_0, -1, 3, 0},
62
+ { 3, s_2_1, -1, 3, 0},
63
+ { 3, s_2_2, -1, 4, 0},
64
+ { 3, s_2_3, -1, 4, 0},
65
+ { 3, s_2_4, -1, 2, 0},
66
+ { 2, s_2_5, -1, 1, 0}
62
67
  };
63
68
 
64
69
  static const symbol s_3_0[2] = { 'i', 'c' };
@@ -67,9 +72,9 @@ static const symbol s_3_2[2] = { 'i', 'v' };
67
72
 
68
73
  static const struct among a_3[3] =
69
74
  {
70
- /* 0 */ { 2, s_3_0, -1, 2, 0},
71
- /* 1 */ { 4, s_3_1, -1, 1, 0},
72
- /* 2 */ { 2, s_3_2, -1, 3, 0}
75
+ { 2, s_3_0, -1, 2, 0},
76
+ { 4, s_3_1, -1, 1, 0},
77
+ { 2, s_3_2, -1, 3, 0}
73
78
  };
74
79
 
75
80
  static const symbol s_4_0[4] = { 'i', 'q', 'U', 'e' };
@@ -118,49 +123,49 @@ static const symbol s_4_42[3] = { 'i', 't', 0xE9 };
118
123
 
119
124
  static const struct among a_4[43] =
120
125
  {
121
- /* 0 */ { 4, s_4_0, -1, 1, 0},
122
- /* 1 */ { 6, s_4_1, -1, 2, 0},
123
- /* 2 */ { 4, s_4_2, -1, 1, 0},
124
- /* 3 */ { 4, s_4_3, -1, 5, 0},
125
- /* 4 */ { 5, s_4_4, -1, 3, 0},
126
- /* 5 */ { 4, s_4_5, -1, 1, 0},
127
- /* 6 */ { 4, s_4_6, -1, 1, 0},
128
- /* 7 */ { 4, s_4_7, -1, 11, 0},
129
- /* 8 */ { 4, s_4_8, -1, 1, 0},
130
- /* 9 */ { 3, s_4_9, -1, 8, 0},
131
- /* 10 */ { 2, s_4_10, -1, 8, 0},
132
- /* 11 */ { 5, s_4_11, -1, 4, 0},
133
- /* 12 */ { 5, s_4_12, -1, 2, 0},
134
- /* 13 */ { 5, s_4_13, -1, 4, 0},
135
- /* 14 */ { 5, s_4_14, -1, 2, 0},
136
- /* 15 */ { 5, s_4_15, -1, 1, 0},
137
- /* 16 */ { 7, s_4_16, -1, 2, 0},
138
- /* 17 */ { 5, s_4_17, -1, 1, 0},
139
- /* 18 */ { 5, s_4_18, -1, 5, 0},
140
- /* 19 */ { 6, s_4_19, -1, 3, 0},
141
- /* 20 */ { 5, s_4_20, -1, 1, 0},
142
- /* 21 */ { 5, s_4_21, -1, 1, 0},
143
- /* 22 */ { 5, s_4_22, -1, 11, 0},
144
- /* 23 */ { 5, s_4_23, -1, 1, 0},
145
- /* 24 */ { 4, s_4_24, -1, 8, 0},
146
- /* 25 */ { 3, s_4_25, -1, 8, 0},
147
- /* 26 */ { 6, s_4_26, -1, 4, 0},
148
- /* 27 */ { 6, s_4_27, -1, 2, 0},
149
- /* 28 */ { 6, s_4_28, -1, 4, 0},
150
- /* 29 */ { 6, s_4_29, -1, 2, 0},
151
- /* 30 */ { 5, s_4_30, -1, 15, 0},
152
- /* 31 */ { 6, s_4_31, 30, 6, 0},
153
- /* 32 */ { 9, s_4_32, 31, 12, 0},
154
- /* 33 */ { 4, s_4_33, -1, 7, 0},
155
- /* 34 */ { 4, s_4_34, -1, 15, 0},
156
- /* 35 */ { 5, s_4_35, 34, 6, 0},
157
- /* 36 */ { 8, s_4_36, 35, 12, 0},
158
- /* 37 */ { 6, s_4_37, 34, 13, 0},
159
- /* 38 */ { 6, s_4_38, 34, 14, 0},
160
- /* 39 */ { 3, s_4_39, -1, 10, 0},
161
- /* 40 */ { 4, s_4_40, 39, 9, 0},
162
- /* 41 */ { 3, s_4_41, -1, 1, 0},
163
- /* 42 */ { 3, s_4_42, -1, 7, 0}
126
+ { 4, s_4_0, -1, 1, 0},
127
+ { 6, s_4_1, -1, 2, 0},
128
+ { 4, s_4_2, -1, 1, 0},
129
+ { 4, s_4_3, -1, 5, 0},
130
+ { 5, s_4_4, -1, 3, 0},
131
+ { 4, s_4_5, -1, 1, 0},
132
+ { 4, s_4_6, -1, 1, 0},
133
+ { 4, s_4_7, -1, 11, 0},
134
+ { 4, s_4_8, -1, 1, 0},
135
+ { 3, s_4_9, -1, 8, 0},
136
+ { 2, s_4_10, -1, 8, 0},
137
+ { 5, s_4_11, -1, 4, 0},
138
+ { 5, s_4_12, -1, 2, 0},
139
+ { 5, s_4_13, -1, 4, 0},
140
+ { 5, s_4_14, -1, 2, 0},
141
+ { 5, s_4_15, -1, 1, 0},
142
+ { 7, s_4_16, -1, 2, 0},
143
+ { 5, s_4_17, -1, 1, 0},
144
+ { 5, s_4_18, -1, 5, 0},
145
+ { 6, s_4_19, -1, 3, 0},
146
+ { 5, s_4_20, -1, 1, 0},
147
+ { 5, s_4_21, -1, 1, 0},
148
+ { 5, s_4_22, -1, 11, 0},
149
+ { 5, s_4_23, -1, 1, 0},
150
+ { 4, s_4_24, -1, 8, 0},
151
+ { 3, s_4_25, -1, 8, 0},
152
+ { 6, s_4_26, -1, 4, 0},
153
+ { 6, s_4_27, -1, 2, 0},
154
+ { 6, s_4_28, -1, 4, 0},
155
+ { 6, s_4_29, -1, 2, 0},
156
+ { 5, s_4_30, -1, 15, 0},
157
+ { 6, s_4_31, 30, 6, 0},
158
+ { 9, s_4_32, 31, 12, 0},
159
+ { 4, s_4_33, -1, 7, 0},
160
+ { 4, s_4_34, -1, 15, 0},
161
+ { 5, s_4_35, 34, 6, 0},
162
+ { 8, s_4_36, 35, 12, 0},
163
+ { 6, s_4_37, 34, 13, 0},
164
+ { 6, s_4_38, 34, 14, 0},
165
+ { 3, s_4_39, -1, 10, 0},
166
+ { 4, s_4_40, 39, 9, 0},
167
+ { 3, s_4_41, -1, 1, 0},
168
+ { 3, s_4_42, -1, 7, 0}
164
169
  };
165
170
 
166
171
  static const symbol s_5_0[3] = { 'i', 'r', 'a' };
@@ -201,41 +206,41 @@ static const symbol s_5_34[5] = { 'i', 's', 's', 'e', 'z' };
201
206
 
202
207
  static const struct among a_5[35] =
203
208
  {
204
- /* 0 */ { 3, s_5_0, -1, 1, 0},
205
- /* 1 */ { 2, s_5_1, -1, 1, 0},
206
- /* 2 */ { 4, s_5_2, -1, 1, 0},
207
- /* 3 */ { 7, s_5_3, -1, 1, 0},
208
- /* 4 */ { 1, s_5_4, -1, 1, 0},
209
- /* 5 */ { 4, s_5_5, 4, 1, 0},
210
- /* 6 */ { 2, s_5_6, -1, 1, 0},
211
- /* 7 */ { 4, s_5_7, -1, 1, 0},
212
- /* 8 */ { 3, s_5_8, -1, 1, 0},
213
- /* 9 */ { 4, s_5_9, -1, 1, 0},
214
- /* 10 */ { 5, s_5_10, -1, 1, 0},
215
- /* 11 */ { 8, s_5_11, -1, 1, 0},
216
- /* 12 */ { 4, s_5_12, -1, 1, 0},
217
- /* 13 */ { 2, s_5_13, -1, 1, 0},
218
- /* 14 */ { 5, s_5_14, 13, 1, 0},
219
- /* 15 */ { 6, s_5_15, 13, 1, 0},
220
- /* 16 */ { 6, s_5_16, -1, 1, 0},
221
- /* 17 */ { 7, s_5_17, -1, 1, 0},
222
- /* 18 */ { 5, s_5_18, -1, 1, 0},
223
- /* 19 */ { 6, s_5_19, -1, 1, 0},
224
- /* 20 */ { 7, s_5_20, -1, 1, 0},
225
- /* 21 */ { 2, s_5_21, -1, 1, 0},
226
- /* 22 */ { 5, s_5_22, 21, 1, 0},
227
- /* 23 */ { 6, s_5_23, 21, 1, 0},
228
- /* 24 */ { 6, s_5_24, -1, 1, 0},
229
- /* 25 */ { 7, s_5_25, -1, 1, 0},
230
- /* 26 */ { 8, s_5_26, -1, 1, 0},
231
- /* 27 */ { 5, s_5_27, -1, 1, 0},
232
- /* 28 */ { 6, s_5_28, -1, 1, 0},
233
- /* 29 */ { 5, s_5_29, -1, 1, 0},
234
- /* 30 */ { 2, s_5_30, -1, 1, 0},
235
- /* 31 */ { 5, s_5_31, -1, 1, 0},
236
- /* 32 */ { 6, s_5_32, -1, 1, 0},
237
- /* 33 */ { 4, s_5_33, -1, 1, 0},
238
- /* 34 */ { 5, s_5_34, -1, 1, 0}
209
+ { 3, s_5_0, -1, 1, 0},
210
+ { 2, s_5_1, -1, 1, 0},
211
+ { 4, s_5_2, -1, 1, 0},
212
+ { 7, s_5_3, -1, 1, 0},
213
+ { 1, s_5_4, -1, 1, 0},
214
+ { 4, s_5_5, 4, 1, 0},
215
+ { 2, s_5_6, -1, 1, 0},
216
+ { 4, s_5_7, -1, 1, 0},
217
+ { 3, s_5_8, -1, 1, 0},
218
+ { 4, s_5_9, -1, 1, 0},
219
+ { 5, s_5_10, -1, 1, 0},
220
+ { 8, s_5_11, -1, 1, 0},
221
+ { 4, s_5_12, -1, 1, 0},
222
+ { 2, s_5_13, -1, 1, 0},
223
+ { 5, s_5_14, 13, 1, 0},
224
+ { 6, s_5_15, 13, 1, 0},
225
+ { 6, s_5_16, -1, 1, 0},
226
+ { 7, s_5_17, -1, 1, 0},
227
+ { 5, s_5_18, -1, 1, 0},
228
+ { 6, s_5_19, -1, 1, 0},
229
+ { 7, s_5_20, -1, 1, 0},
230
+ { 2, s_5_21, -1, 1, 0},
231
+ { 5, s_5_22, 21, 1, 0},
232
+ { 6, s_5_23, 21, 1, 0},
233
+ { 6, s_5_24, -1, 1, 0},
234
+ { 7, s_5_25, -1, 1, 0},
235
+ { 8, s_5_26, -1, 1, 0},
236
+ { 5, s_5_27, -1, 1, 0},
237
+ { 6, s_5_28, -1, 1, 0},
238
+ { 5, s_5_29, -1, 1, 0},
239
+ { 2, s_5_30, -1, 1, 0},
240
+ { 5, s_5_31, -1, 1, 0},
241
+ { 6, s_5_32, -1, 1, 0},
242
+ { 4, s_5_33, -1, 1, 0},
243
+ { 5, s_5_34, -1, 1, 0}
239
244
  };
240
245
 
241
246
  static const symbol s_6_0[1] = { 'a' };
@@ -279,44 +284,44 @@ static const symbol s_6_37[1] = { 0xE9 };
279
284
 
280
285
  static const struct among a_6[38] =
281
286
  {
282
- /* 0 */ { 1, s_6_0, -1, 3, 0},
283
- /* 1 */ { 3, s_6_1, 0, 2, 0},
284
- /* 2 */ { 4, s_6_2, -1, 3, 0},
285
- /* 3 */ { 4, s_6_3, -1, 3, 0},
286
- /* 4 */ { 2, s_6_4, -1, 2, 0},
287
- /* 5 */ { 2, s_6_5, -1, 3, 0},
288
- /* 6 */ { 4, s_6_6, 5, 2, 0},
289
- /* 7 */ { 2, s_6_7, -1, 2, 0},
290
- /* 8 */ { 2, s_6_8, -1, 3, 0},
291
- /* 9 */ { 4, s_6_9, 8, 2, 0},
292
- /* 10 */ { 4, s_6_10, -1, 3, 0},
293
- /* 11 */ { 5, s_6_11, -1, 3, 0},
294
- /* 12 */ { 5, s_6_12, -1, 3, 0},
295
- /* 13 */ { 4, s_6_13, -1, 3, 0},
296
- /* 14 */ { 3, s_6_14, -1, 2, 0},
297
- /* 15 */ { 3, s_6_15, -1, 3, 0},
298
- /* 16 */ { 5, s_6_16, 15, 2, 0},
299
- /* 17 */ { 4, s_6_17, -1, 1, 0},
300
- /* 18 */ { 6, s_6_18, 17, 2, 0},
301
- /* 19 */ { 7, s_6_19, 17, 3, 0},
302
- /* 20 */ { 5, s_6_20, -1, 2, 0},
303
- /* 21 */ { 4, s_6_21, -1, 3, 0},
304
- /* 22 */ { 2, s_6_22, -1, 2, 0},
305
- /* 23 */ { 3, s_6_23, -1, 3, 0},
306
- /* 24 */ { 5, s_6_24, 23, 2, 0},
307
- /* 25 */ { 3, s_6_25, -1, 3, 0},
308
- /* 26 */ { 5, s_6_26, -1, 3, 0},
309
- /* 27 */ { 7, s_6_27, 26, 2, 0},
310
- /* 28 */ { 5, s_6_28, -1, 2, 0},
311
- /* 29 */ { 6, s_6_29, -1, 3, 0},
312
- /* 30 */ { 5, s_6_30, -1, 2, 0},
313
- /* 31 */ { 2, s_6_31, -1, 3, 0},
314
- /* 32 */ { 2, s_6_32, -1, 2, 0},
315
- /* 33 */ { 3, s_6_33, 32, 2, 0},
316
- /* 34 */ { 5, s_6_34, 33, 2, 0},
317
- /* 35 */ { 6, s_6_35, 33, 3, 0},
318
- /* 36 */ { 4, s_6_36, 32, 2, 0},
319
- /* 37 */ { 1, s_6_37, -1, 2, 0}
287
+ { 1, s_6_0, -1, 3, 0},
288
+ { 3, s_6_1, 0, 2, 0},
289
+ { 4, s_6_2, -1, 3, 0},
290
+ { 4, s_6_3, -1, 3, 0},
291
+ { 2, s_6_4, -1, 2, 0},
292
+ { 2, s_6_5, -1, 3, 0},
293
+ { 4, s_6_6, 5, 2, 0},
294
+ { 2, s_6_7, -1, 2, 0},
295
+ { 2, s_6_8, -1, 3, 0},
296
+ { 4, s_6_9, 8, 2, 0},
297
+ { 4, s_6_10, -1, 3, 0},
298
+ { 5, s_6_11, -1, 3, 0},
299
+ { 5, s_6_12, -1, 3, 0},
300
+ { 4, s_6_13, -1, 3, 0},
301
+ { 3, s_6_14, -1, 2, 0},
302
+ { 3, s_6_15, -1, 3, 0},
303
+ { 5, s_6_16, 15, 2, 0},
304
+ { 4, s_6_17, -1, 1, 0},
305
+ { 6, s_6_18, 17, 2, 0},
306
+ { 7, s_6_19, 17, 3, 0},
307
+ { 5, s_6_20, -1, 2, 0},
308
+ { 4, s_6_21, -1, 3, 0},
309
+ { 2, s_6_22, -1, 2, 0},
310
+ { 3, s_6_23, -1, 3, 0},
311
+ { 5, s_6_24, 23, 2, 0},
312
+ { 3, s_6_25, -1, 3, 0},
313
+ { 5, s_6_26, -1, 3, 0},
314
+ { 7, s_6_27, 26, 2, 0},
315
+ { 5, s_6_28, -1, 2, 0},
316
+ { 6, s_6_29, -1, 3, 0},
317
+ { 5, s_6_30, -1, 2, 0},
318
+ { 2, s_6_31, -1, 3, 0},
319
+ { 2, s_6_32, -1, 2, 0},
320
+ { 3, s_6_33, 32, 2, 0},
321
+ { 5, s_6_34, 33, 2, 0},
322
+ { 6, s_6_35, 33, 3, 0},
323
+ { 4, s_6_36, 32, 2, 0},
324
+ { 1, s_6_37, -1, 2, 0}
320
325
  };
321
326
 
322
327
  static const symbol s_7_0[1] = { 'e' };
@@ -325,17 +330,15 @@ static const symbol s_7_2[4] = { 'i', 0xE8, 'r', 'e' };
325
330
  static const symbol s_7_3[3] = { 'i', 'o', 'n' };
326
331
  static const symbol s_7_4[3] = { 'I', 'e', 'r' };
327
332
  static const symbol s_7_5[3] = { 'i', 'e', 'r' };
328
- static const symbol s_7_6[1] = { 0xEB };
329
333
 
330
- static const struct among a_7[7] =
334
+ static const struct among a_7[6] =
331
335
  {
332
- /* 0 */ { 1, s_7_0, -1, 3, 0},
333
- /* 1 */ { 4, s_7_1, 0, 2, 0},
334
- /* 2 */ { 4, s_7_2, 0, 2, 0},
335
- /* 3 */ { 3, s_7_3, -1, 1, 0},
336
- /* 4 */ { 3, s_7_4, -1, 2, 0},
337
- /* 5 */ { 3, s_7_5, -1, 2, 0},
338
- /* 6 */ { 1, s_7_6, -1, 4, 0}
336
+ { 1, s_7_0, -1, 3, 0},
337
+ { 4, s_7_1, 0, 2, 0},
338
+ { 4, s_7_2, 0, 2, 0},
339
+ { 3, s_7_3, -1, 1, 0},
340
+ { 3, s_7_4, -1, 2, 0},
341
+ { 3, s_7_5, -1, 2, 0}
339
342
  };
340
343
 
341
344
  static const symbol s_8_0[3] = { 'e', 'l', 'l' };
@@ -346,93 +349,86 @@ static const symbol s_8_4[3] = { 'e', 't', 't' };
346
349
 
347
350
  static const struct among a_8[5] =
348
351
  {
349
- /* 0 */ { 3, s_8_0, -1, -1, 0},
350
- /* 1 */ { 4, s_8_1, -1, -1, 0},
351
- /* 2 */ { 3, s_8_2, -1, -1, 0},
352
- /* 3 */ { 3, s_8_3, -1, -1, 0},
353
- /* 4 */ { 3, s_8_4, -1, -1, 0}
352
+ { 3, s_8_0, -1, -1, 0},
353
+ { 4, s_8_1, -1, -1, 0},
354
+ { 3, s_8_2, -1, -1, 0},
355
+ { 3, s_8_3, -1, -1, 0},
356
+ { 3, s_8_4, -1, -1, 0}
354
357
  };
355
358
 
356
359
  static const unsigned char g_v[] = { 17, 65, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 130, 103, 8, 5 };
357
360
 
358
361
  static const unsigned char g_keep_with_s[] = { 1, 65, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 };
359
362
 
360
- static const symbol s_0[] = { 'u' };
361
- static const symbol s_1[] = { 'U' };
362
- static const symbol s_2[] = { 'i' };
363
- static const symbol s_3[] = { 'I' };
364
- static const symbol s_4[] = { 'y' };
363
+ static const symbol s_0[] = { 'U' };
364
+ static const symbol s_1[] = { 'I' };
365
+ static const symbol s_2[] = { 'Y' };
366
+ static const symbol s_3[] = { 'H', 'e' };
367
+ static const symbol s_4[] = { 'H', 'i' };
365
368
  static const symbol s_5[] = { 'Y' };
366
- static const symbol s_6[] = { 'y' };
367
- static const symbol s_7[] = { 'Y' };
368
- static const symbol s_8[] = { 'q' };
369
- static const symbol s_9[] = { 'u' };
370
- static const symbol s_10[] = { 'U' };
371
- static const symbol s_11[] = { 'i' };
372
- static const symbol s_12[] = { 'u' };
373
- static const symbol s_13[] = { 'y' };
374
- static const symbol s_14[] = { 'i', 'c' };
375
- static const symbol s_15[] = { 'i', 'q', 'U' };
376
- static const symbol s_16[] = { 'l', 'o', 'g' };
377
- static const symbol s_17[] = { 'u' };
378
- static const symbol s_18[] = { 'e', 'n', 't' };
379
- static const symbol s_19[] = { 'a', 't' };
380
- static const symbol s_20[] = { 'e', 'u', 'x' };
381
- static const symbol s_21[] = { 'i' };
382
- static const symbol s_22[] = { 'a', 'b', 'l' };
383
- static const symbol s_23[] = { 'i', 'q', 'U' };
384
- static const symbol s_24[] = { 'a', 't' };
385
- static const symbol s_25[] = { 'i', 'c' };
386
- static const symbol s_26[] = { 'i', 'q', 'U' };
387
- static const symbol s_27[] = { 'e', 'a', 'u' };
388
- static const symbol s_28[] = { 'a', 'l' };
389
- static const symbol s_29[] = { 'e', 'u', 'x' };
390
- static const symbol s_30[] = { 'a', 'n', 't' };
391
- static const symbol s_31[] = { 'e', 'n', 't' };
369
+ static const symbol s_6[] = { 'U' };
370
+ static const symbol s_7[] = { 'i' };
371
+ static const symbol s_8[] = { 'u' };
372
+ static const symbol s_9[] = { 'y' };
373
+ static const symbol s_10[] = { 0xEB };
374
+ static const symbol s_11[] = { 0xEF };
375
+ static const symbol s_12[] = { 'i', 'c' };
376
+ static const symbol s_13[] = { 'i', 'q', 'U' };
377
+ static const symbol s_14[] = { 'l', 'o', 'g' };
378
+ static const symbol s_15[] = { 'u' };
379
+ static const symbol s_16[] = { 'e', 'n', 't' };
380
+ static const symbol s_17[] = { 'a', 't' };
381
+ static const symbol s_18[] = { 'e', 'u', 'x' };
382
+ static const symbol s_19[] = { 'i' };
383
+ static const symbol s_20[] = { 'a', 'b', 'l' };
384
+ static const symbol s_21[] = { 'i', 'q', 'U' };
385
+ static const symbol s_22[] = { 'a', 't' };
386
+ static const symbol s_23[] = { 'i', 'c' };
387
+ static const symbol s_24[] = { 'i', 'q', 'U' };
388
+ static const symbol s_25[] = { 'e', 'a', 'u' };
389
+ static const symbol s_26[] = { 'a', 'l' };
390
+ static const symbol s_27[] = { 'e', 'u', 'x' };
391
+ static const symbol s_28[] = { 'a', 'n', 't' };
392
+ static const symbol s_29[] = { 'e', 'n', 't' };
393
+ static const symbol s_30[] = { 'H', 'i' };
394
+ static const symbol s_31[] = { 'i' };
392
395
  static const symbol s_32[] = { 'e' };
393
- static const symbol s_33[] = { 's' };
394
- static const symbol s_34[] = { 's' };
395
- static const symbol s_35[] = { 't' };
396
- static const symbol s_36[] = { 'i' };
397
- static const symbol s_37[] = { 'g', 'u' };
398
- static const symbol s_38[] = { 0xE9 };
399
- static const symbol s_39[] = { 0xE8 };
400
- static const symbol s_40[] = { 'e' };
401
- static const symbol s_41[] = { 'Y' };
402
- static const symbol s_42[] = { 'i' };
403
- static const symbol s_43[] = { 0xE7 };
404
- static const symbol s_44[] = { 'c' };
396
+ static const symbol s_33[] = { 'i' };
397
+ static const symbol s_34[] = { 'c' };
405
398
 
406
399
  static int r_prelude(struct SN_env * z) {
407
- while(1) { /* repeat, line 38 */
400
+ while(1) {
408
401
  int c1 = z->c;
409
- while(1) { /* goto, line 38 */
402
+ while(1) {
410
403
  int c2 = z->c;
411
- { int c3 = z->c; /* or, line 44 */
404
+ { int c3 = z->c;
412
405
  if (in_grouping(z, g_v, 97, 251, 0)) goto lab3;
413
- z->bra = z->c; /* [, line 40 */
414
- { int c4 = z->c; /* or, line 40 */
415
- if (!(eq_s(z, 1, s_0))) goto lab5;
416
- z->ket = z->c; /* ], line 40 */
406
+ z->bra = z->c;
407
+ { int c4 = z->c;
408
+ if (z->c == z->l || z->p[z->c] != 'u') goto lab5;
409
+ z->c++;
410
+ z->ket = z->c;
417
411
  if (in_grouping(z, g_v, 97, 251, 0)) goto lab5;
418
- { int ret = slice_from_s(z, 1, s_1); /* <-, line 40 */
412
+ { int ret = slice_from_s(z, 1, s_0);
419
413
  if (ret < 0) return ret;
420
414
  }
421
415
  goto lab4;
422
416
  lab5:
423
417
  z->c = c4;
424
- if (!(eq_s(z, 1, s_2))) goto lab6;
425
- z->ket = z->c; /* ], line 41 */
418
+ if (z->c == z->l || z->p[z->c] != 'i') goto lab6;
419
+ z->c++;
420
+ z->ket = z->c;
426
421
  if (in_grouping(z, g_v, 97, 251, 0)) goto lab6;
427
- { int ret = slice_from_s(z, 1, s_3); /* <-, line 41 */
422
+ { int ret = slice_from_s(z, 1, s_1);
428
423
  if (ret < 0) return ret;
429
424
  }
430
425
  goto lab4;
431
426
  lab6:
432
427
  z->c = c4;
433
- if (!(eq_s(z, 1, s_4))) goto lab3;
434
- z->ket = z->c; /* ], line 42 */
435
- { int ret = slice_from_s(z, 1, s_5); /* <-, line 42 */
428
+ if (z->c == z->l || z->p[z->c] != 'y') goto lab3;
429
+ z->c++;
430
+ z->ket = z->c;
431
+ { int ret = slice_from_s(z, 1, s_2);
436
432
  if (ret < 0) return ret;
437
433
  }
438
434
  }
@@ -440,21 +436,44 @@ static int r_prelude(struct SN_env * z) {
440
436
  goto lab2;
441
437
  lab3:
442
438
  z->c = c3;
443
- z->bra = z->c; /* [, line 45 */
444
- if (!(eq_s(z, 1, s_6))) goto lab7;
445
- z->ket = z->c; /* ], line 45 */
446
- if (in_grouping(z, g_v, 97, 251, 0)) goto lab7;
447
- { int ret = slice_from_s(z, 1, s_7); /* <-, line 45 */
439
+ z->bra = z->c;
440
+ if (z->c == z->l || z->p[z->c] != 0xEB) goto lab7;
441
+ z->c++;
442
+ z->ket = z->c;
443
+ { int ret = slice_from_s(z, 2, s_3);
448
444
  if (ret < 0) return ret;
449
445
  }
450
446
  goto lab2;
451
447
  lab7:
452
448
  z->c = c3;
453
- if (!(eq_s(z, 1, s_8))) goto lab1;
454
- z->bra = z->c; /* [, line 47 */
455
- if (!(eq_s(z, 1, s_9))) goto lab1;
456
- z->ket = z->c; /* ], line 47 */
457
- { int ret = slice_from_s(z, 1, s_10); /* <-, line 47 */
449
+ z->bra = z->c;
450
+ if (z->c == z->l || z->p[z->c] != 0xEF) goto lab8;
451
+ z->c++;
452
+ z->ket = z->c;
453
+ { int ret = slice_from_s(z, 2, s_4);
454
+ if (ret < 0) return ret;
455
+ }
456
+ goto lab2;
457
+ lab8:
458
+ z->c = c3;
459
+ z->bra = z->c;
460
+ if (z->c == z->l || z->p[z->c] != 'y') goto lab9;
461
+ z->c++;
462
+ z->ket = z->c;
463
+ if (in_grouping(z, g_v, 97, 251, 0)) goto lab9;
464
+ { int ret = slice_from_s(z, 1, s_5);
465
+ if (ret < 0) return ret;
466
+ }
467
+ goto lab2;
468
+ lab9:
469
+ z->c = c3;
470
+ if (z->c == z->l || z->p[z->c] != 'q') goto lab1;
471
+ z->c++;
472
+ z->bra = z->c;
473
+ if (z->c == z->l || z->p[z->c] != 'u') goto lab1;
474
+ z->c++;
475
+ z->ket = z->c;
476
+ { int ret = slice_from_s(z, 1, s_6);
458
477
  if (ret < 0) return ret;
459
478
  }
460
479
  }
@@ -464,7 +483,7 @@ static int r_prelude(struct SN_env * z) {
464
483
  lab1:
465
484
  z->c = c2;
466
485
  if (z->c >= z->l) goto lab0;
467
- z->c++; /* goto, line 38 */
486
+ z->c++;
468
487
  }
469
488
  continue;
470
489
  lab0:
@@ -475,59 +494,59 @@ static int r_prelude(struct SN_env * z) {
475
494
  }
476
495
 
477
496
  static int r_mark_regions(struct SN_env * z) {
478
- z->I[0] = z->l;
479
- z->I[1] = z->l;
480
497
  z->I[2] = z->l;
481
- { int c1 = z->c; /* do, line 56 */
482
- { int c2 = z->c; /* or, line 58 */
498
+ z->I[1] = z->l;
499
+ z->I[0] = z->l;
500
+ { int c1 = z->c;
501
+ { int c2 = z->c;
483
502
  if (in_grouping(z, g_v, 97, 251, 0)) goto lab2;
484
503
  if (in_grouping(z, g_v, 97, 251, 0)) goto lab2;
485
504
  if (z->c >= z->l) goto lab2;
486
- z->c++; /* next, line 57 */
505
+ z->c++;
487
506
  goto lab1;
488
507
  lab2:
489
508
  z->c = c2;
490
509
  if (z->c + 2 >= z->l || z->p[z->c + 2] >> 5 != 3 || !((331776 >> (z->p[z->c + 2] & 0x1f)) & 1)) goto lab3;
491
- if (!(find_among(z, a_0, 3))) goto lab3; /* among, line 59 */
510
+ if (!(find_among(z, a_0, 3))) goto lab3;
492
511
  goto lab1;
493
512
  lab3:
494
513
  z->c = c2;
495
514
  if (z->c >= z->l) goto lab0;
496
- z->c++; /* next, line 66 */
497
- { /* gopast */ /* grouping v, line 66 */
515
+ z->c++;
516
+ {
498
517
  int ret = out_grouping(z, g_v, 97, 251, 1);
499
518
  if (ret < 0) goto lab0;
500
519
  z->c += ret;
501
520
  }
502
521
  }
503
522
  lab1:
504
- z->I[0] = z->c; /* setmark pV, line 67 */
523
+ z->I[2] = z->c;
505
524
  lab0:
506
525
  z->c = c1;
507
526
  }
508
- { int c3 = z->c; /* do, line 69 */
509
- { /* gopast */ /* grouping v, line 70 */
527
+ { int c3 = z->c;
528
+ {
510
529
  int ret = out_grouping(z, g_v, 97, 251, 1);
511
530
  if (ret < 0) goto lab4;
512
531
  z->c += ret;
513
532
  }
514
- { /* gopast */ /* non v, line 70 */
533
+ {
515
534
  int ret = in_grouping(z, g_v, 97, 251, 1);
516
535
  if (ret < 0) goto lab4;
517
536
  z->c += ret;
518
537
  }
519
- z->I[1] = z->c; /* setmark p1, line 70 */
520
- { /* gopast */ /* grouping v, line 71 */
538
+ z->I[1] = z->c;
539
+ {
521
540
  int ret = out_grouping(z, g_v, 97, 251, 1);
522
541
  if (ret < 0) goto lab4;
523
542
  z->c += ret;
524
543
  }
525
- { /* gopast */ /* non v, line 71 */
544
+ {
526
545
  int ret = in_grouping(z, g_v, 97, 251, 1);
527
546
  if (ret < 0) goto lab4;
528
547
  z->c += ret;
529
548
  }
530
- z->I[2] = z->c; /* setmark p2, line 71 */
549
+ z->I[0] = z->c;
531
550
  lab4:
532
551
  z->c = c3;
533
552
  }
@@ -536,33 +555,47 @@ static int r_mark_regions(struct SN_env * z) {
536
555
 
537
556
  static int r_postlude(struct SN_env * z) {
538
557
  int among_var;
539
- while(1) { /* repeat, line 75 */
558
+ while(1) {
540
559
  int c1 = z->c;
541
- z->bra = z->c; /* [, line 77 */
542
- if (z->c >= z->l || z->p[z->c + 0] >> 5 != 2 || !((35652096 >> (z->p[z->c + 0] & 0x1f)) & 1)) among_var = 4; else
543
- among_var = find_among(z, a_1, 4); /* substring, line 77 */
560
+ z->bra = z->c;
561
+ if (z->c >= z->l || z->p[z->c + 0] >> 5 != 2 || !((35652352 >> (z->p[z->c + 0] & 0x1f)) & 1)) among_var = 7; else
562
+ among_var = find_among(z, a_1, 7);
544
563
  if (!(among_var)) goto lab0;
545
- z->ket = z->c; /* ], line 77 */
546
- switch(among_var) {
547
- case 0: goto lab0;
564
+ z->ket = z->c;
565
+ switch (among_var) {
548
566
  case 1:
549
- { int ret = slice_from_s(z, 1, s_11); /* <-, line 78 */
567
+ { int ret = slice_from_s(z, 1, s_7);
550
568
  if (ret < 0) return ret;
551
569
  }
552
570
  break;
553
571
  case 2:
554
- { int ret = slice_from_s(z, 1, s_12); /* <-, line 79 */
572
+ { int ret = slice_from_s(z, 1, s_8);
555
573
  if (ret < 0) return ret;
556
574
  }
557
575
  break;
558
576
  case 3:
559
- { int ret = slice_from_s(z, 1, s_13); /* <-, line 80 */
577
+ { int ret = slice_from_s(z, 1, s_9);
560
578
  if (ret < 0) return ret;
561
579
  }
562
580
  break;
563
581
  case 4:
582
+ { int ret = slice_from_s(z, 1, s_10);
583
+ if (ret < 0) return ret;
584
+ }
585
+ break;
586
+ case 5:
587
+ { int ret = slice_from_s(z, 1, s_11);
588
+ if (ret < 0) return ret;
589
+ }
590
+ break;
591
+ case 6:
592
+ { int ret = slice_del(z);
593
+ if (ret < 0) return ret;
594
+ }
595
+ break;
596
+ case 7:
564
597
  if (z->c >= z->l) goto lab0;
565
- z->c++; /* next, line 81 */
598
+ z->c++;
566
599
  break;
567
600
  }
568
601
  continue;
@@ -574,7 +607,7 @@ static int r_postlude(struct SN_env * z) {
574
607
  }
575
608
 
576
609
  static int r_RV(struct SN_env * z) {
577
- if (!(z->I[0] <= z->c)) return 0;
610
+ if (!(z->I[2] <= z->c)) return 0;
578
611
  return 1;
579
612
  }
580
613
 
@@ -584,51 +617,48 @@ static int r_R1(struct SN_env * z) {
584
617
  }
585
618
 
586
619
  static int r_R2(struct SN_env * z) {
587
- if (!(z->I[2] <= z->c)) return 0;
620
+ if (!(z->I[0] <= z->c)) return 0;
588
621
  return 1;
589
622
  }
590
623
 
591
624
  static int r_standard_suffix(struct SN_env * z) {
592
625
  int among_var;
593
- z->ket = z->c; /* [, line 92 */
594
- among_var = find_among_b(z, a_4, 43); /* substring, line 92 */
626
+ z->ket = z->c;
627
+ among_var = find_among_b(z, a_4, 43);
595
628
  if (!(among_var)) return 0;
596
- z->bra = z->c; /* ], line 92 */
597
- switch(among_var) {
598
- case 0: return 0;
629
+ z->bra = z->c;
630
+ switch (among_var) {
599
631
  case 1:
600
632
  { int ret = r_R2(z);
601
- if (ret == 0) return 0; /* call R2, line 96 */
602
- if (ret < 0) return ret;
633
+ if (ret <= 0) return ret;
603
634
  }
604
- { int ret = slice_del(z); /* delete, line 96 */
635
+ { int ret = slice_del(z);
605
636
  if (ret < 0) return ret;
606
637
  }
607
638
  break;
608
639
  case 2:
609
640
  { int ret = r_R2(z);
610
- if (ret == 0) return 0; /* call R2, line 99 */
611
- if (ret < 0) return ret;
641
+ if (ret <= 0) return ret;
612
642
  }
613
- { int ret = slice_del(z); /* delete, line 99 */
643
+ { int ret = slice_del(z);
614
644
  if (ret < 0) return ret;
615
645
  }
616
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 100 */
617
- z->ket = z->c; /* [, line 100 */
618
- if (!(eq_s_b(z, 2, s_14))) { z->c = z->l - m_keep; goto lab0; }
619
- z->bra = z->c; /* ], line 100 */
620
- { int m1 = z->l - z->c; (void)m1; /* or, line 100 */
646
+ { int m1 = z->l - z->c; (void)m1;
647
+ z->ket = z->c;
648
+ if (!(eq_s_b(z, 2, s_12))) { z->c = z->l - m1; goto lab0; }
649
+ z->bra = z->c;
650
+ { int m2 = z->l - z->c; (void)m2;
621
651
  { int ret = r_R2(z);
622
- if (ret == 0) goto lab2; /* call R2, line 100 */
652
+ if (ret == 0) goto lab2;
623
653
  if (ret < 0) return ret;
624
654
  }
625
- { int ret = slice_del(z); /* delete, line 100 */
655
+ { int ret = slice_del(z);
626
656
  if (ret < 0) return ret;
627
657
  }
628
658
  goto lab1;
629
659
  lab2:
630
- z->c = z->l - m1;
631
- { int ret = slice_from_s(z, 3, s_15); /* <-, line 100 */
660
+ z->c = z->l - m2;
661
+ { int ret = slice_from_s(z, 3, s_13);
632
662
  if (ret < 0) return ret;
633
663
  }
634
664
  }
@@ -639,82 +669,77 @@ static int r_standard_suffix(struct SN_env * z) {
639
669
  break;
640
670
  case 3:
641
671
  { int ret = r_R2(z);
642
- if (ret == 0) return 0; /* call R2, line 104 */
643
- if (ret < 0) return ret;
672
+ if (ret <= 0) return ret;
644
673
  }
645
- { int ret = slice_from_s(z, 3, s_16); /* <-, line 104 */
674
+ { int ret = slice_from_s(z, 3, s_14);
646
675
  if (ret < 0) return ret;
647
676
  }
648
677
  break;
649
678
  case 4:
650
679
  { int ret = r_R2(z);
651
- if (ret == 0) return 0; /* call R2, line 107 */
652
- if (ret < 0) return ret;
680
+ if (ret <= 0) return ret;
653
681
  }
654
- { int ret = slice_from_s(z, 1, s_17); /* <-, line 107 */
682
+ { int ret = slice_from_s(z, 1, s_15);
655
683
  if (ret < 0) return ret;
656
684
  }
657
685
  break;
658
686
  case 5:
659
687
  { int ret = r_R2(z);
660
- if (ret == 0) return 0; /* call R2, line 110 */
661
- if (ret < 0) return ret;
688
+ if (ret <= 0) return ret;
662
689
  }
663
- { int ret = slice_from_s(z, 3, s_18); /* <-, line 110 */
690
+ { int ret = slice_from_s(z, 3, s_16);
664
691
  if (ret < 0) return ret;
665
692
  }
666
693
  break;
667
694
  case 6:
668
695
  { int ret = r_RV(z);
669
- if (ret == 0) return 0; /* call RV, line 114 */
670
- if (ret < 0) return ret;
696
+ if (ret <= 0) return ret;
671
697
  }
672
- { int ret = slice_del(z); /* delete, line 114 */
698
+ { int ret = slice_del(z);
673
699
  if (ret < 0) return ret;
674
700
  }
675
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 115 */
676
- z->ket = z->c; /* [, line 116 */
677
- among_var = find_among_b(z, a_2, 6); /* substring, line 116 */
678
- if (!(among_var)) { z->c = z->l - m_keep; goto lab3; }
679
- z->bra = z->c; /* ], line 116 */
680
- switch(among_var) {
681
- case 0: { z->c = z->l - m_keep; goto lab3; }
701
+ { int m3 = z->l - z->c; (void)m3;
702
+ z->ket = z->c;
703
+ among_var = find_among_b(z, a_2, 6);
704
+ if (!(among_var)) { z->c = z->l - m3; goto lab3; }
705
+ z->bra = z->c;
706
+ switch (among_var) {
682
707
  case 1:
683
708
  { int ret = r_R2(z);
684
- if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 117 */
709
+ if (ret == 0) { z->c = z->l - m3; goto lab3; }
685
710
  if (ret < 0) return ret;
686
711
  }
687
- { int ret = slice_del(z); /* delete, line 117 */
712
+ { int ret = slice_del(z);
688
713
  if (ret < 0) return ret;
689
714
  }
690
- z->ket = z->c; /* [, line 117 */
691
- if (!(eq_s_b(z, 2, s_19))) { z->c = z->l - m_keep; goto lab3; }
692
- z->bra = z->c; /* ], line 117 */
715
+ z->ket = z->c;
716
+ if (!(eq_s_b(z, 2, s_17))) { z->c = z->l - m3; goto lab3; }
717
+ z->bra = z->c;
693
718
  { int ret = r_R2(z);
694
- if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 117 */
719
+ if (ret == 0) { z->c = z->l - m3; goto lab3; }
695
720
  if (ret < 0) return ret;
696
721
  }
697
- { int ret = slice_del(z); /* delete, line 117 */
722
+ { int ret = slice_del(z);
698
723
  if (ret < 0) return ret;
699
724
  }
700
725
  break;
701
726
  case 2:
702
- { int m2 = z->l - z->c; (void)m2; /* or, line 118 */
727
+ { int m4 = z->l - z->c; (void)m4;
703
728
  { int ret = r_R2(z);
704
- if (ret == 0) goto lab5; /* call R2, line 118 */
729
+ if (ret == 0) goto lab5;
705
730
  if (ret < 0) return ret;
706
731
  }
707
- { int ret = slice_del(z); /* delete, line 118 */
732
+ { int ret = slice_del(z);
708
733
  if (ret < 0) return ret;
709
734
  }
710
735
  goto lab4;
711
736
  lab5:
712
- z->c = z->l - m2;
737
+ z->c = z->l - m4;
713
738
  { int ret = r_R1(z);
714
- if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R1, line 118 */
739
+ if (ret == 0) { z->c = z->l - m3; goto lab3; }
715
740
  if (ret < 0) return ret;
716
741
  }
717
- { int ret = slice_from_s(z, 3, s_20); /* <-, line 118 */
742
+ { int ret = slice_from_s(z, 3, s_18);
718
743
  if (ret < 0) return ret;
719
744
  }
720
745
  }
@@ -722,19 +747,19 @@ static int r_standard_suffix(struct SN_env * z) {
722
747
  break;
723
748
  case 3:
724
749
  { int ret = r_R2(z);
725
- if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 120 */
750
+ if (ret == 0) { z->c = z->l - m3; goto lab3; }
726
751
  if (ret < 0) return ret;
727
752
  }
728
- { int ret = slice_del(z); /* delete, line 120 */
753
+ { int ret = slice_del(z);
729
754
  if (ret < 0) return ret;
730
755
  }
731
756
  break;
732
757
  case 4:
733
758
  { int ret = r_RV(z);
734
- if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call RV, line 122 */
759
+ if (ret == 0) { z->c = z->l - m3; goto lab3; }
735
760
  if (ret < 0) return ret;
736
761
  }
737
- { int ret = slice_from_s(z, 1, s_21); /* <-, line 122 */
762
+ { int ret = slice_from_s(z, 1, s_19);
738
763
  if (ret < 0) return ret;
739
764
  }
740
765
  break;
@@ -745,51 +770,49 @@ static int r_standard_suffix(struct SN_env * z) {
745
770
  break;
746
771
  case 7:
747
772
  { int ret = r_R2(z);
748
- if (ret == 0) return 0; /* call R2, line 129 */
749
- if (ret < 0) return ret;
773
+ if (ret <= 0) return ret;
750
774
  }
751
- { int ret = slice_del(z); /* delete, line 129 */
775
+ { int ret = slice_del(z);
752
776
  if (ret < 0) return ret;
753
777
  }
754
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 130 */
755
- z->ket = z->c; /* [, line 131 */
756
- 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 lab6; }
757
- among_var = find_among_b(z, a_3, 3); /* substring, line 131 */
758
- if (!(among_var)) { z->c = z->l - m_keep; goto lab6; }
759
- z->bra = z->c; /* ], line 131 */
760
- switch(among_var) {
761
- case 0: { z->c = z->l - m_keep; goto lab6; }
778
+ { int m5 = z->l - z->c; (void)m5;
779
+ z->ket = z->c;
780
+ 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 - m5; goto lab6; }
781
+ among_var = find_among_b(z, a_3, 3);
782
+ if (!(among_var)) { z->c = z->l - m5; goto lab6; }
783
+ z->bra = z->c;
784
+ switch (among_var) {
762
785
  case 1:
763
- { int m3 = z->l - z->c; (void)m3; /* or, line 132 */
786
+ { int m6 = z->l - z->c; (void)m6;
764
787
  { int ret = r_R2(z);
765
- if (ret == 0) goto lab8; /* call R2, line 132 */
788
+ if (ret == 0) goto lab8;
766
789
  if (ret < 0) return ret;
767
790
  }
768
- { int ret = slice_del(z); /* delete, line 132 */
791
+ { int ret = slice_del(z);
769
792
  if (ret < 0) return ret;
770
793
  }
771
794
  goto lab7;
772
795
  lab8:
773
- z->c = z->l - m3;
774
- { int ret = slice_from_s(z, 3, s_22); /* <-, line 132 */
796
+ z->c = z->l - m6;
797
+ { int ret = slice_from_s(z, 3, s_20);
775
798
  if (ret < 0) return ret;
776
799
  }
777
800
  }
778
801
  lab7:
779
802
  break;
780
803
  case 2:
781
- { int m4 = z->l - z->c; (void)m4; /* or, line 133 */
804
+ { int m7 = z->l - z->c; (void)m7;
782
805
  { int ret = r_R2(z);
783
- if (ret == 0) goto lab10; /* call R2, line 133 */
806
+ if (ret == 0) goto lab10;
784
807
  if (ret < 0) return ret;
785
808
  }
786
- { int ret = slice_del(z); /* delete, line 133 */
809
+ { int ret = slice_del(z);
787
810
  if (ret < 0) return ret;
788
811
  }
789
812
  goto lab9;
790
813
  lab10:
791
- z->c = z->l - m4;
792
- { int ret = slice_from_s(z, 3, s_23); /* <-, line 133 */
814
+ z->c = z->l - m7;
815
+ { int ret = slice_from_s(z, 3, s_21);
793
816
  if (ret < 0) return ret;
794
817
  }
795
818
  }
@@ -797,10 +820,10 @@ static int r_standard_suffix(struct SN_env * z) {
797
820
  break;
798
821
  case 3:
799
822
  { int ret = r_R2(z);
800
- if (ret == 0) { z->c = z->l - m_keep; goto lab6; } /* call R2, line 134 */
823
+ if (ret == 0) { z->c = z->l - m5; goto lab6; }
801
824
  if (ret < 0) return ret;
802
825
  }
803
- { int ret = slice_del(z); /* delete, line 134 */
826
+ { int ret = slice_del(z);
804
827
  if (ret < 0) return ret;
805
828
  }
806
829
  break;
@@ -811,38 +834,37 @@ static int r_standard_suffix(struct SN_env * z) {
811
834
  break;
812
835
  case 8:
813
836
  { int ret = r_R2(z);
814
- if (ret == 0) return 0; /* call R2, line 141 */
815
- if (ret < 0) return ret;
837
+ if (ret <= 0) return ret;
816
838
  }
817
- { int ret = slice_del(z); /* delete, line 141 */
839
+ { int ret = slice_del(z);
818
840
  if (ret < 0) return ret;
819
841
  }
820
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 142 */
821
- z->ket = z->c; /* [, line 142 */
822
- if (!(eq_s_b(z, 2, s_24))) { z->c = z->l - m_keep; goto lab11; }
823
- z->bra = z->c; /* ], line 142 */
842
+ { int m8 = z->l - z->c; (void)m8;
843
+ z->ket = z->c;
844
+ if (!(eq_s_b(z, 2, s_22))) { z->c = z->l - m8; goto lab11; }
845
+ z->bra = z->c;
824
846
  { int ret = r_R2(z);
825
- if (ret == 0) { z->c = z->l - m_keep; goto lab11; } /* call R2, line 142 */
847
+ if (ret == 0) { z->c = z->l - m8; goto lab11; }
826
848
  if (ret < 0) return ret;
827
849
  }
828
- { int ret = slice_del(z); /* delete, line 142 */
850
+ { int ret = slice_del(z);
829
851
  if (ret < 0) return ret;
830
852
  }
831
- z->ket = z->c; /* [, line 142 */
832
- if (!(eq_s_b(z, 2, s_25))) { z->c = z->l - m_keep; goto lab11; }
833
- z->bra = z->c; /* ], line 142 */
834
- { int m5 = z->l - z->c; (void)m5; /* or, line 142 */
853
+ z->ket = z->c;
854
+ if (!(eq_s_b(z, 2, s_23))) { z->c = z->l - m8; goto lab11; }
855
+ z->bra = z->c;
856
+ { int m9 = z->l - z->c; (void)m9;
835
857
  { int ret = r_R2(z);
836
- if (ret == 0) goto lab13; /* call R2, line 142 */
858
+ if (ret == 0) goto lab13;
837
859
  if (ret < 0) return ret;
838
860
  }
839
- { int ret = slice_del(z); /* delete, line 142 */
861
+ { int ret = slice_del(z);
840
862
  if (ret < 0) return ret;
841
863
  }
842
864
  goto lab12;
843
865
  lab13:
844
- z->c = z->l - m5;
845
- { int ret = slice_from_s(z, 3, s_26); /* <-, line 142 */
866
+ z->c = z->l - m9;
867
+ { int ret = slice_from_s(z, 3, s_24);
846
868
  if (ret < 0) return ret;
847
869
  }
848
870
  }
@@ -852,36 +874,34 @@ static int r_standard_suffix(struct SN_env * z) {
852
874
  }
853
875
  break;
854
876
  case 9:
855
- { int ret = slice_from_s(z, 3, s_27); /* <-, line 144 */
877
+ { int ret = slice_from_s(z, 3, s_25);
856
878
  if (ret < 0) return ret;
857
879
  }
858
880
  break;
859
881
  case 10:
860
882
  { int ret = r_R1(z);
861
- if (ret == 0) return 0; /* call R1, line 145 */
862
- if (ret < 0) return ret;
883
+ if (ret <= 0) return ret;
863
884
  }
864
- { int ret = slice_from_s(z, 2, s_28); /* <-, line 145 */
885
+ { int ret = slice_from_s(z, 2, s_26);
865
886
  if (ret < 0) return ret;
866
887
  }
867
888
  break;
868
889
  case 11:
869
- { int m6 = z->l - z->c; (void)m6; /* or, line 147 */
890
+ { int m10 = z->l - z->c; (void)m10;
870
891
  { int ret = r_R2(z);
871
- if (ret == 0) goto lab15; /* call R2, line 147 */
892
+ if (ret == 0) goto lab15;
872
893
  if (ret < 0) return ret;
873
894
  }
874
- { int ret = slice_del(z); /* delete, line 147 */
895
+ { int ret = slice_del(z);
875
896
  if (ret < 0) return ret;
876
897
  }
877
898
  goto lab14;
878
899
  lab15:
879
- z->c = z->l - m6;
900
+ z->c = z->l - m10;
880
901
  { int ret = r_R1(z);
881
- if (ret == 0) return 0; /* call R1, line 147 */
882
- if (ret < 0) return ret;
902
+ if (ret <= 0) return ret;
883
903
  }
884
- { int ret = slice_from_s(z, 3, s_29); /* <-, line 147 */
904
+ { int ret = slice_from_s(z, 3, s_27);
885
905
  if (ret < 0) return ret;
886
906
  }
887
907
  }
@@ -889,116 +909,108 @@ static int r_standard_suffix(struct SN_env * z) {
889
909
  break;
890
910
  case 12:
891
911
  { int ret = r_R1(z);
892
- if (ret == 0) return 0; /* call R1, line 150 */
893
- if (ret < 0) return ret;
912
+ if (ret <= 0) return ret;
894
913
  }
895
914
  if (out_grouping_b(z, g_v, 97, 251, 0)) return 0;
896
- { int ret = slice_del(z); /* delete, line 150 */
915
+ { int ret = slice_del(z);
897
916
  if (ret < 0) return ret;
898
917
  }
899
918
  break;
900
919
  case 13:
901
920
  { int ret = r_RV(z);
902
- if (ret == 0) return 0; /* call RV, line 155 */
903
- if (ret < 0) return ret;
921
+ if (ret <= 0) return ret;
904
922
  }
905
- { int ret = slice_from_s(z, 3, s_30); /* <-, line 155 */
923
+ { int ret = slice_from_s(z, 3, s_28);
906
924
  if (ret < 0) return ret;
907
925
  }
908
- return 0; /* fail, line 155 */
926
+ return 0;
909
927
  break;
910
928
  case 14:
911
929
  { int ret = r_RV(z);
912
- if (ret == 0) return 0; /* call RV, line 156 */
913
- if (ret < 0) return ret;
930
+ if (ret <= 0) return ret;
914
931
  }
915
- { int ret = slice_from_s(z, 3, s_31); /* <-, line 156 */
932
+ { int ret = slice_from_s(z, 3, s_29);
916
933
  if (ret < 0) return ret;
917
934
  }
918
- return 0; /* fail, line 156 */
935
+ return 0;
919
936
  break;
920
937
  case 15:
921
- { int m_test = z->l - z->c; /* test, line 158 */
938
+ { int m_test11 = z->l - z->c;
922
939
  if (in_grouping_b(z, g_v, 97, 251, 0)) return 0;
923
940
  { int ret = r_RV(z);
924
- if (ret == 0) return 0; /* call RV, line 158 */
925
- if (ret < 0) return ret;
941
+ if (ret <= 0) return ret;
926
942
  }
927
- z->c = z->l - m_test;
943
+ z->c = z->l - m_test11;
928
944
  }
929
- { int ret = slice_del(z); /* delete, line 158 */
945
+ { int ret = slice_del(z);
930
946
  if (ret < 0) return ret;
931
947
  }
932
- return 0; /* fail, line 158 */
948
+ return 0;
933
949
  break;
934
950
  }
935
951
  return 1;
936
952
  }
937
953
 
938
954
  static int r_i_verb_suffix(struct SN_env * z) {
939
- int among_var;
940
- { int mlimit; /* setlimit, line 163 */
941
- int m1 = z->l - z->c; (void)m1;
942
- if (z->c < z->I[0]) return 0;
943
- z->c = z->I[0]; /* tomark, line 163 */
944
- mlimit = z->lb; z->lb = z->c;
945
- z->c = z->l - m1;
946
- z->ket = z->c; /* [, line 164 */
947
- if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((68944418 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit; return 0; }
948
- among_var = find_among_b(z, a_5, 35); /* substring, line 164 */
949
- if (!(among_var)) { z->lb = mlimit; return 0; }
950
- z->bra = z->c; /* ], line 164 */
951
- switch(among_var) {
952
- case 0: { z->lb = mlimit; return 0; }
953
- case 1:
954
- if (out_grouping_b(z, g_v, 97, 251, 0)) { z->lb = mlimit; return 0; }
955
- { int ret = slice_del(z); /* delete, line 170 */
956
- if (ret < 0) return ret;
957
- }
958
- break;
955
+
956
+ { int mlimit1;
957
+ if (z->c < z->I[2]) return 0;
958
+ mlimit1 = z->lb; z->lb = z->I[2];
959
+ z->ket = z->c;
960
+ if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((68944418 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit1; return 0; }
961
+ if (!(find_among_b(z, a_5, 35))) { z->lb = mlimit1; return 0; }
962
+ z->bra = z->c;
963
+ { int m2 = z->l - z->c; (void)m2;
964
+ if (z->c <= z->lb || z->p[z->c - 1] != 'H') goto lab0;
965
+ z->c--;
966
+ { z->lb = mlimit1; return 0; }
967
+ lab0:
968
+ z->c = z->l - m2;
969
+ }
970
+ if (out_grouping_b(z, g_v, 97, 251, 0)) { z->lb = mlimit1; return 0; }
971
+ { int ret = slice_del(z);
972
+ if (ret < 0) return ret;
959
973
  }
960
- z->lb = mlimit;
974
+ z->lb = mlimit1;
961
975
  }
962
976
  return 1;
963
977
  }
964
978
 
965
979
  static int r_verb_suffix(struct SN_env * z) {
966
980
  int among_var;
967
- { int mlimit; /* setlimit, line 174 */
968
- int m1 = z->l - z->c; (void)m1;
969
- if (z->c < z->I[0]) return 0;
970
- z->c = z->I[0]; /* tomark, line 174 */
971
- mlimit = z->lb; z->lb = z->c;
972
- z->c = z->l - m1;
973
- z->ket = z->c; /* [, line 175 */
974
- among_var = find_among_b(z, a_6, 38); /* substring, line 175 */
975
- if (!(among_var)) { z->lb = mlimit; return 0; }
976
- z->bra = z->c; /* ], line 175 */
977
- switch(among_var) {
978
- case 0: { z->lb = mlimit; return 0; }
981
+
982
+ { int mlimit1;
983
+ if (z->c < z->I[2]) return 0;
984
+ mlimit1 = z->lb; z->lb = z->I[2];
985
+ z->ket = z->c;
986
+ among_var = find_among_b(z, a_6, 38);
987
+ if (!(among_var)) { z->lb = mlimit1; return 0; }
988
+ z->bra = z->c;
989
+ switch (among_var) {
979
990
  case 1:
980
991
  { int ret = r_R2(z);
981
- if (ret == 0) { z->lb = mlimit; return 0; } /* call R2, line 177 */
992
+ if (ret == 0) { z->lb = mlimit1; return 0; }
982
993
  if (ret < 0) return ret;
983
994
  }
984
- { int ret = slice_del(z); /* delete, line 177 */
995
+ { int ret = slice_del(z);
985
996
  if (ret < 0) return ret;
986
997
  }
987
998
  break;
988
999
  case 2:
989
- { int ret = slice_del(z); /* delete, line 185 */
1000
+ { int ret = slice_del(z);
990
1001
  if (ret < 0) return ret;
991
1002
  }
992
1003
  break;
993
1004
  case 3:
994
- { int ret = slice_del(z); /* delete, line 190 */
1005
+ { int ret = slice_del(z);
995
1006
  if (ret < 0) return ret;
996
1007
  }
997
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 191 */
998
- z->ket = z->c; /* [, line 191 */
999
- if (!(eq_s_b(z, 1, s_32))) { z->c = z->l - m_keep; goto lab0; }
1000
- z->bra = z->c; /* ], line 191 */
1001
- { int ret = slice_del(z); /* delete, line 191 */
1008
+ { int m2 = z->l - z->c; (void)m2;
1009
+ z->ket = z->c;
1010
+ if (z->c <= z->lb || z->p[z->c - 1] != 'e') { z->c = z->l - m2; goto lab0; }
1011
+ z->c--;
1012
+ z->bra = z->c;
1013
+ { int ret = slice_del(z);
1002
1014
  if (ret < 0) return ret;
1003
1015
  }
1004
1016
  lab0:
@@ -1006,89 +1018,91 @@ static int r_verb_suffix(struct SN_env * z) {
1006
1018
  }
1007
1019
  break;
1008
1020
  }
1009
- z->lb = mlimit;
1021
+ z->lb = mlimit1;
1010
1022
  }
1011
1023
  return 1;
1012
1024
  }
1013
1025
 
1014
1026
  static int r_residual_suffix(struct SN_env * z) {
1015
1027
  int among_var;
1016
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 199 */
1017
- z->ket = z->c; /* [, line 199 */
1018
- if (!(eq_s_b(z, 1, s_33))) { z->c = z->l - m_keep; goto lab0; }
1019
- z->bra = z->c; /* ], line 199 */
1020
- { int m_test = z->l - z->c; /* test, line 199 */
1021
- if (out_grouping_b(z, g_keep_with_s, 97, 232, 0)) { z->c = z->l - m_keep; goto lab0; }
1022
- z->c = z->l - m_test;
1028
+ { int m1 = z->l - z->c; (void)m1;
1029
+ z->ket = z->c;
1030
+ if (z->c <= z->lb || z->p[z->c - 1] != 's') { z->c = z->l - m1; goto lab0; }
1031
+ z->c--;
1032
+ z->bra = z->c;
1033
+ { int m_test2 = z->l - z->c;
1034
+ { int m3 = z->l - z->c; (void)m3;
1035
+ if (!(eq_s_b(z, 2, s_30))) goto lab2;
1036
+ goto lab1;
1037
+ lab2:
1038
+ z->c = z->l - m3;
1039
+ if (out_grouping_b(z, g_keep_with_s, 97, 232, 0)) { z->c = z->l - m1; goto lab0; }
1040
+ }
1041
+ lab1:
1042
+ z->c = z->l - m_test2;
1023
1043
  }
1024
- { int ret = slice_del(z); /* delete, line 199 */
1044
+ { int ret = slice_del(z);
1025
1045
  if (ret < 0) return ret;
1026
1046
  }
1027
1047
  lab0:
1028
1048
  ;
1029
1049
  }
1030
- { int mlimit; /* setlimit, line 200 */
1031
- int m1 = z->l - z->c; (void)m1;
1032
- if (z->c < z->I[0]) return 0;
1033
- z->c = z->I[0]; /* tomark, line 200 */
1034
- mlimit = z->lb; z->lb = z->c;
1035
- z->c = z->l - m1;
1036
- z->ket = z->c; /* [, line 201 */
1037
- among_var = find_among_b(z, a_7, 7); /* substring, line 201 */
1038
- if (!(among_var)) { z->lb = mlimit; return 0; }
1039
- z->bra = z->c; /* ], line 201 */
1040
- switch(among_var) {
1041
- case 0: { z->lb = mlimit; return 0; }
1050
+
1051
+ { int mlimit4;
1052
+ if (z->c < z->I[2]) return 0;
1053
+ mlimit4 = z->lb; z->lb = z->I[2];
1054
+ z->ket = z->c;
1055
+ if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((278560 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit4; return 0; }
1056
+ among_var = find_among_b(z, a_7, 6);
1057
+ if (!(among_var)) { z->lb = mlimit4; return 0; }
1058
+ z->bra = z->c;
1059
+ switch (among_var) {
1042
1060
  case 1:
1043
1061
  { int ret = r_R2(z);
1044
- if (ret == 0) { z->lb = mlimit; return 0; } /* call R2, line 202 */
1062
+ if (ret == 0) { z->lb = mlimit4; return 0; }
1045
1063
  if (ret < 0) return ret;
1046
1064
  }
1047
- { int m2 = z->l - z->c; (void)m2; /* or, line 202 */
1048
- if (!(eq_s_b(z, 1, s_34))) goto lab2;
1049
- goto lab1;
1050
- lab2:
1051
- z->c = z->l - m2;
1052
- if (!(eq_s_b(z, 1, s_35))) { z->lb = mlimit; return 0; }
1065
+ { int m5 = z->l - z->c; (void)m5;
1066
+ if (z->c <= z->lb || z->p[z->c - 1] != 's') goto lab4;
1067
+ z->c--;
1068
+ goto lab3;
1069
+ lab4:
1070
+ z->c = z->l - m5;
1071
+ if (z->c <= z->lb || z->p[z->c - 1] != 't') { z->lb = mlimit4; return 0; }
1072
+ z->c--;
1053
1073
  }
1054
- lab1:
1055
- { int ret = slice_del(z); /* delete, line 202 */
1074
+ lab3:
1075
+ { int ret = slice_del(z);
1056
1076
  if (ret < 0) return ret;
1057
1077
  }
1058
1078
  break;
1059
1079
  case 2:
1060
- { int ret = slice_from_s(z, 1, s_36); /* <-, line 204 */
1080
+ { int ret = slice_from_s(z, 1, s_31);
1061
1081
  if (ret < 0) return ret;
1062
1082
  }
1063
1083
  break;
1064
1084
  case 3:
1065
- { int ret = slice_del(z); /* delete, line 205 */
1066
- if (ret < 0) return ret;
1067
- }
1068
- break;
1069
- case 4:
1070
- if (!(eq_s_b(z, 2, s_37))) { z->lb = mlimit; return 0; }
1071
- { int ret = slice_del(z); /* delete, line 206 */
1085
+ { int ret = slice_del(z);
1072
1086
  if (ret < 0) return ret;
1073
1087
  }
1074
1088
  break;
1075
1089
  }
1076
- z->lb = mlimit;
1090
+ z->lb = mlimit4;
1077
1091
  }
1078
1092
  return 1;
1079
1093
  }
1080
1094
 
1081
1095
  static int r_un_double(struct SN_env * z) {
1082
- { int m_test = z->l - z->c; /* test, line 212 */
1096
+ { int m_test1 = z->l - z->c;
1083
1097
  if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1069056 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
1084
- if (!(find_among_b(z, a_8, 5))) return 0; /* among, line 212 */
1085
- z->c = z->l - m_test;
1098
+ if (!(find_among_b(z, a_8, 5))) return 0;
1099
+ z->c = z->l - m_test1;
1086
1100
  }
1087
- z->ket = z->c; /* [, line 212 */
1101
+ z->ket = z->c;
1088
1102
  if (z->c <= z->lb) return 0;
1089
- z->c--; /* next, line 212 */
1090
- z->bra = z->c; /* ], line 212 */
1091
- { int ret = slice_del(z); /* delete, line 212 */
1103
+ z->c--;
1104
+ z->bra = z->c;
1105
+ { int ret = slice_del(z);
1092
1106
  if (ret < 0) return ret;
1093
1107
  }
1094
1108
  return 1;
@@ -1096,7 +1110,7 @@ static int r_un_double(struct SN_env * z) {
1096
1110
 
1097
1111
  static int r_un_accent(struct SN_env * z) {
1098
1112
  { int i = 1;
1099
- while(1) { /* atleast, line 216 */
1113
+ while(1) {
1100
1114
  if (out_grouping_b(z, g_v, 97, 251, 0)) goto lab0;
1101
1115
  i--;
1102
1116
  continue;
@@ -1105,129 +1119,121 @@ static int r_un_accent(struct SN_env * z) {
1105
1119
  }
1106
1120
  if (i > 0) return 0;
1107
1121
  }
1108
- z->ket = z->c; /* [, line 217 */
1109
- { int m1 = z->l - z->c; (void)m1; /* or, line 217 */
1110
- if (!(eq_s_b(z, 1, s_38))) goto lab2;
1122
+ z->ket = z->c;
1123
+ { int m1 = z->l - z->c; (void)m1;
1124
+ if (z->c <= z->lb || z->p[z->c - 1] != 0xE9) goto lab2;
1125
+ z->c--;
1111
1126
  goto lab1;
1112
1127
  lab2:
1113
1128
  z->c = z->l - m1;
1114
- if (!(eq_s_b(z, 1, s_39))) return 0;
1129
+ if (z->c <= z->lb || z->p[z->c - 1] != 0xE8) return 0;
1130
+ z->c--;
1115
1131
  }
1116
1132
  lab1:
1117
- z->bra = z->c; /* ], line 217 */
1118
- { int ret = slice_from_s(z, 1, s_40); /* <-, line 217 */
1133
+ z->bra = z->c;
1134
+ { int ret = slice_from_s(z, 1, s_32);
1119
1135
  if (ret < 0) return ret;
1120
1136
  }
1121
1137
  return 1;
1122
1138
  }
1123
1139
 
1124
1140
  extern int french_ISO_8859_1_stem(struct SN_env * z) {
1125
- { int c1 = z->c; /* do, line 223 */
1141
+ { int c1 = z->c;
1126
1142
  { int ret = r_prelude(z);
1127
- if (ret == 0) goto lab0; /* call prelude, line 223 */
1128
1143
  if (ret < 0) return ret;
1129
1144
  }
1130
- lab0:
1131
1145
  z->c = c1;
1132
1146
  }
1133
- { int c2 = z->c; /* do, line 224 */
1134
- { int ret = r_mark_regions(z);
1135
- if (ret == 0) goto lab1; /* call mark_regions, line 224 */
1136
- if (ret < 0) return ret;
1137
- }
1138
- lab1:
1139
- z->c = c2;
1147
+
1148
+ { int ret = r_mark_regions(z);
1149
+ if (ret < 0) return ret;
1140
1150
  }
1141
- z->lb = z->c; z->c = z->l; /* backwards, line 225 */
1151
+ z->lb = z->c; z->c = z->l;
1142
1152
 
1143
- { int m3 = z->l - z->c; (void)m3; /* do, line 227 */
1144
- { int m4 = z->l - z->c; (void)m4; /* or, line 237 */
1145
- { int m5 = z->l - z->c; (void)m5; /* and, line 233 */
1146
- { int m6 = z->l - z->c; (void)m6; /* or, line 229 */
1153
+ { int m2 = z->l - z->c; (void)m2;
1154
+ { int m3 = z->l - z->c; (void)m3;
1155
+ { int m4 = z->l - z->c; (void)m4;
1156
+ { int m5 = z->l - z->c; (void)m5;
1147
1157
  { int ret = r_standard_suffix(z);
1148
- if (ret == 0) goto lab6; /* call standard_suffix, line 229 */
1158
+ if (ret == 0) goto lab4;
1149
1159
  if (ret < 0) return ret;
1150
1160
  }
1151
- goto lab5;
1152
- lab6:
1153
- z->c = z->l - m6;
1161
+ goto lab3;
1162
+ lab4:
1163
+ z->c = z->l - m5;
1154
1164
  { int ret = r_i_verb_suffix(z);
1155
- if (ret == 0) goto lab7; /* call i_verb_suffix, line 230 */
1165
+ if (ret == 0) goto lab5;
1156
1166
  if (ret < 0) return ret;
1157
1167
  }
1158
- goto lab5;
1159
- lab7:
1160
- z->c = z->l - m6;
1168
+ goto lab3;
1169
+ lab5:
1170
+ z->c = z->l - m5;
1161
1171
  { int ret = r_verb_suffix(z);
1162
- if (ret == 0) goto lab4; /* call verb_suffix, line 231 */
1172
+ if (ret == 0) goto lab2;
1163
1173
  if (ret < 0) return ret;
1164
1174
  }
1165
1175
  }
1166
- lab5:
1167
- z->c = z->l - m5;
1168
- { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 234 */
1169
- z->ket = z->c; /* [, line 234 */
1170
- { int m7 = z->l - z->c; (void)m7; /* or, line 234 */
1171
- if (!(eq_s_b(z, 1, s_41))) goto lab10;
1172
- z->bra = z->c; /* ], line 234 */
1173
- { int ret = slice_from_s(z, 1, s_42); /* <-, line 234 */
1176
+ lab3:
1177
+ z->c = z->l - m4;
1178
+ { int m6 = z->l - z->c; (void)m6;
1179
+ z->ket = z->c;
1180
+ { int m7 = z->l - z->c; (void)m7;
1181
+ if (z->c <= z->lb || z->p[z->c - 1] != 'Y') goto lab8;
1182
+ z->c--;
1183
+ z->bra = z->c;
1184
+ { int ret = slice_from_s(z, 1, s_33);
1174
1185
  if (ret < 0) return ret;
1175
1186
  }
1176
- goto lab9;
1177
- lab10:
1187
+ goto lab7;
1188
+ lab8:
1178
1189
  z->c = z->l - m7;
1179
- if (!(eq_s_b(z, 1, s_43))) { z->c = z->l - m_keep; goto lab8; }
1180
- z->bra = z->c; /* ], line 235 */
1181
- { int ret = slice_from_s(z, 1, s_44); /* <-, line 235 */
1190
+ if (z->c <= z->lb || z->p[z->c - 1] != 0xE7) { z->c = z->l - m6; goto lab6; }
1191
+ z->c--;
1192
+ z->bra = z->c;
1193
+ { int ret = slice_from_s(z, 1, s_34);
1182
1194
  if (ret < 0) return ret;
1183
1195
  }
1184
1196
  }
1185
- lab9:
1186
- lab8:
1197
+ lab7:
1198
+ lab6:
1187
1199
  ;
1188
1200
  }
1189
1201
  }
1190
- goto lab3;
1191
- lab4:
1192
- z->c = z->l - m4;
1202
+ goto lab1;
1203
+ lab2:
1204
+ z->c = z->l - m3;
1193
1205
  { int ret = r_residual_suffix(z);
1194
- if (ret == 0) goto lab2; /* call residual_suffix, line 238 */
1206
+ if (ret == 0) goto lab0;
1195
1207
  if (ret < 0) return ret;
1196
1208
  }
1197
1209
  }
1198
- lab3:
1199
- lab2:
1200
- z->c = z->l - m3;
1210
+ lab1:
1211
+ lab0:
1212
+ z->c = z->l - m2;
1201
1213
  }
1202
- { int m8 = z->l - z->c; (void)m8; /* do, line 243 */
1214
+ { int m8 = z->l - z->c; (void)m8;
1203
1215
  { int ret = r_un_double(z);
1204
- if (ret == 0) goto lab11; /* call un_double, line 243 */
1205
1216
  if (ret < 0) return ret;
1206
1217
  }
1207
- lab11:
1208
1218
  z->c = z->l - m8;
1209
1219
  }
1210
- { int m9 = z->l - z->c; (void)m9; /* do, line 244 */
1220
+ { int m9 = z->l - z->c; (void)m9;
1211
1221
  { int ret = r_un_accent(z);
1212
- if (ret == 0) goto lab12; /* call un_accent, line 244 */
1213
1222
  if (ret < 0) return ret;
1214
1223
  }
1215
- lab12:
1216
1224
  z->c = z->l - m9;
1217
1225
  }
1218
1226
  z->c = z->lb;
1219
- { int c10 = z->c; /* do, line 246 */
1227
+ { int c10 = z->c;
1220
1228
  { int ret = r_postlude(z);
1221
- if (ret == 0) goto lab13; /* call postlude, line 246 */
1222
1229
  if (ret < 0) return ret;
1223
1230
  }
1224
- lab13:
1225
1231
  z->c = c10;
1226
1232
  }
1227
1233
  return 1;
1228
1234
  }
1229
1235
 
1230
- extern struct SN_env * french_ISO_8859_1_create_env(void) { return SN_create_env(0, 3, 0); }
1236
+ extern struct SN_env * french_ISO_8859_1_create_env(void) { return SN_create_env(0, 3); }
1231
1237
 
1232
1238
  extern void french_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1233
1239