Discontinuing ragel.spec. It is more appropriate for this to be written by
[external/ragel.git] / ChangeLog
1 Ragel 5.18 - TBD 
2 ================
3  -There is now a 100% correspondence between state id numbers in the
4   intermediate XML file, Graphviz dot files and generated code. This was
5   achieved by moving code which determines if the error state is necessary
6   into the frontend, and then assigning state numbers before writing out the
7   intermediate file.
8  -Backened class structure was reorganized to make it easier to add new code
9   generators without having to also modify the existing code generators.
10  -The C and D code generation executable was changed to rlgen-cd.
11  -The Java code generation was split out into it's own exectuable (rlgen-java)
12   to allow it to freely diverge from the C/D-based code generation.
13  -The graphviz dot file generation was also split out to it's own executable
14   (rlgen-dot).
15  -The Ruby code generation patch from Victor Hugo Borja was added. This is
16   highly experimental code and is not yet completely functional. It is in the
17   executable rlgen-ruby.
18  -The problem with large state machine machines in Java was fixed. This
19   problem was discovered by Colin Fleming, who also contributed a patch.
20   Rather than specify arrays as comma-separated lists of literals, array
21   initialization is now done in a static function. This is the approach used
22   by the Java compiler. Unlike the compiler Ragel is careful split large
23   initilization functions.
24  -The manual was expanded and reorganized somewhat.
25  -Eliminated per-example directories in examples/.
26  -Made some fixes to the pullscan.rl example.
27  -In the frontend CR characters are now treated as whitespace.
28  -Updated to the latest aapl. This completely eliminates the shallowCopy
29   function. With that, a definitive memory leak is fixed.
30  -Control codes with escape sequences are now printable characters (-p
31   option). Also, the space character is now printed as SP.
32  -Fixed the null dereference and consequential segfault which occurred when
33   trying to create empty machines with [] and // and /a[]b/. 
34  -Fixed the segfault which occured when a machine reference failed.
35  -Discontinuing ragel.spec. It is more appropriate for this to be written by
36   package maintenance developers.
37
38 Ragel 5.17 - Jan 28, 2007
39 =========================
40  -The scanners and parsers in both the frontend and backend programs were
41   completely rewritten using Ragel and Kelbt.
42  -The '%when condition' syntax was functioning like '$when condition'. This
43   was fixed.
44  -In the Vim syntax file fixes to the matching of embedding operators were
45   made. Also, improvements to the sync patterns were made.
46  -Added pullscan.rl to the examples directory. It is an example of doing
47   pull-based scanning. Also, xmlscan.rl in rlcodegen is a pull scanner.
48  -The introduction chapter of the manual was improved. The manually-drawn
49   figures for the examples were replaced with graphviz-drawn figures.
50  
51 Ragel 5.16 - Nov 20, 2006
52 =========================
53  -Bug fix: the fhold and fexec directives did not function correctly in
54   scanner pattern actions. In this context manipulations of p may be lost or
55   made invalid. To fix this, fexec and fhold now manipulate tokend, which is
56   now always used to update p when the action terminates.
57
58 Ragel 5.15 - Oct 31, 2006
59 =========================
60  -A language independent test harness was introduced. Test cases can be
61   written using a custom mini-language in the embedded actions. This
62   mini-language is then translated to C, D and Java when generating the
63   language-specific test cases.
64  -Several existing tests have been ported to the language-independent format
65   and a number of new language-independent test cases have been added.
66  -The state-based embedding operators which access states that are not the
67   start state and are not final (the 'middle' states) have changed. They
68   were:
69     <@/    eof action into middle states
70     <@!    error action into middle states
71     <@^    local error action into middle states
72     <@~    to-state action into middle states
73     <@*    from-state action into middle states
74   They are now:
75     <>/    eof action into middle states
76     <>!    error action into middle states
77     <>^    local error action into middle states
78     <>~    to-state action into middle states
79     <>*    from-state action into middle states
80  -The verbose form of embeddings using the <- operator have been removed.
81   This syntax was difficult to remember.
82  -A new verbose form of state-based embedding operators have been added.
83   These are like the symbol versions, except they replace the symbols:
84     /  !  ^  ~  *
85   with literal keywords:
86     eof err lerr to from
87  -The following words have been promoted to keywords:
88     when eof err lerr to from
89  -The write statment now gets its own lexical scope in the scanner to ensure
90   that commands are passed through as is (not affected by keywords).
91  -Bug fix: in the code generation of fret in scanner actions the adjustment to
92   p that is needed in some cases (dependent on content of patterns) was not
93   happening.
94  -The fhold directive, which decrements p, cannot be permitted in the pattern
95   action of a scanner item because it will not behave consistently. At the end
96   of a pattern action p could be decremented, set to a new value or left
97   alone. This depends on the contents of the scanner's patterns. The user
98   cannot be expected to predict what will happen to p.
99  -Conditions in D code require a cast to the widec type when computing widec.
100  -Like Java, D code also needs if (true) branches for control flow in actions
101   in order to fool the unreachable code detector. This is now abstracted in
102   all code generators using the CTRL_FLOW() function.
103  -The NULL_ITEM value in java code should be -1. This is needed for
104   maintaining tokstart.
105
106 Ragel 5.14 - Oct 1, 2006
107 ========================
108  -Fixed the check for use of fcall in actions embedded within longest match
109   items. It was emitting an error if an item's longest-match action had an
110   fcall, which is allowed. This bug was introduced while fixing a segfault in
111   version 5.8.
112  -A new minimization option was added: MinimizeMostOps (-l). This option
113   minimizes at every operation except on chains of expressions and chains of
114   terms (eg, union and concat). On these chains it minimizes only at the last
115   operation. This makes test cases with many states compile faster, without
116   killing the performance on grammars like strings2.rl.
117  -The -l minimiziation option was made the default.
118  -Fixes to Java code: Use of the fc value did not work, now fixed. Static data
119   is now declared with the final keyword. Patch from Colin Fleming. Conditions
120   now work when generating Java code.
121  -The option -p was added to rlcodegen which causes printable characters to be
122   printed in GraphViz output. Patch from Colin Fleming.
123  -The "element" keyword no longer exists, removed from vim syntax file.
124   Updated keyword highlighting.
125  -The host language selection is now made in the frontend.
126  -Native host language types are now used when specifying the alphtype.
127   Previously all languages used the set defined by C, and these were mapped to
128   the appropriate type in the backend.
129
130 Ragel 5.13 - Sep 7, 2006
131 ========================
132  -Fixed a careless error which broke Java code generation.
133
134 Ragel 5.12 - Sep 7, 2006
135 ========================
136  -The -o flag did not work in combination with -V. This was fixed.
137  -The split code generation format uses only the required number of digits
138   when writing out the number in the file name of each part.
139  -The -T0, -F0 and -G0 codegens should write out the action list iteration
140   variables only when there are regular, to state or from state actions. The
141   code gens should not use anyActions().
142  -If two states have the same EOF actions, they are written out in the finish
143   routine as one case.
144  -The split and in-place goto formats would sometimes generate _out when it is
145   not needed. This was fixed.
146  -Improved the basic partitioning in the split code gen. The last partition
147   would sometimes be empty. This was fixed.
148  -Use of 'fcall *' was not causing top to be initialized. Fixed.
149  -Implemented a Java backend, specified with -J. Only the table-based format
150   is supported.
151  -Implemented range compression in the frontend. This has no effect on the
152   generated code, however it reduces the work of the backend and any programs
153   that read the intermediate format.
154
155 Ragel 5.11 - Aug 10, 2006
156 =========================
157  -Added a variable to the configure.in script which allows the building of
158   the parsers to be turned off (BUILD_PARSERS). Parser building is off by
159   default for released versions. 
160  -Removed configure tests for bison defines header file. Use --defines=file
161   instead. 
162  -Configure script doesn't test for bison, flex and gperf when building of the
163   parsers is turned off.
164  -Removed check for YYLTYPE structure from configure script. Since shipped
165   code will not build parsers by default, we don't need to be as accomodating
166   of other versions of bison. 
167  -Added a missing include that showed up with g++ 2.95.3.
168  -Failed configure test for Objective-C compiler is now silent.
169
170 Ragel 5.10 - Jul 31, 2006
171 =========================
172  -Moved the check for error state higher in the table-based processing loop.
173  -Replaced naive implementations of condition searching with proper ones. In
174   the table-based formats the searching is also table-based. In the directly
175   executed formats the searching is also directly executable.
176  -The minimization process was made aware of conditions.
177  -A problem with the condition implementation was fixed. Previously we were
178   taking pointers to transitions and then using them after a call to
179   outTransCopy, which was a bad idea because they may be changed by the call.
180  -Added test mailbox3.rl which is based on mailbox2.rl but includes conditions
181   for restricting header and message body lengths.  
182  -Eliminated the initial one-character backup of p just before resuming
183   execution.
184  -Added the -s option to the frontend for printing statistics. This currently
185   includes just the number of states. 
186  -Sped up the generation of the in-place goto-driven (-G2) code style.
187  -Implemented a split version of in-place goto-driven code style. This code
188   generation style is suitable for producing fast implementations of very
189   large machines. Partitioning is currently naive. In the future a
190   high-quality partitioning program will be employed. The flag for accessing
191   this feature is -Pn, where n is the number of partitions.
192  -Converted mailbox1.rl, strings2.rl and cppscan1.rl tests to support the
193   split code generation.
194  -Fixes and updates were made to the runtests script: added -c for compiling
195   only, changed the -me option to -e, and added support for testing the split
196   code style.
197  
198 Ragel 5.9 - Jul 19, 2006
199 ========================
200  -Fixed a bug in the include system which caused malformed output from the
201   frontend when the include was made from a multi-line machine spec and the
202   included file ended in a single line spec (or vice versa).
203  -Static data is now const.
204  -Actions which referenced states but were not embedded caused the frontend to
205   segfault, now fixed.
206  -Manual now built with pdflatex.
207  -The manual was reorganized and expanded. Chapter sequence is now:
208   Introduction, Constructing Machines, Embedding Actions, Controlling
209   Nondeterminism and Interfacing to the Host program.
210
211 Ragel 5.8 - Jun 17, 2006
212 ========================
213  -The internal representation of the alphabet type has been encapsulated
214   into a class and all operations on it have been defined as C++ operators.
215  -The condition implementation now supports range transitions. This allows
216   conditions to be embedded into arbitrary machines. Conditions are still
217   exprimental.
218  -More condition embedding operators were added
219    1. Isolate the start state and embed a condition into all transitions
220       leaving it:   
221       >when cond   OR   >?cond
222    2. Embed a condition into all transitions:
223       when cond    OR   $when cond   OR   $?cond
224    3. Embed a condition into pending out transitions:
225       %when cond   OR   %?cond
226  -Improvements were made to the determinization process to support pending out
227   conditions.
228  -The Vim sytax file was fixed so that :> doesn't cause the match of a label.
229  -The test suite was converted to a single-file format which uses less disk
230   space than the old directory-per-test format.
231  
232 Ragel 5.7 - May 14, 2006
233 ========================
234  -Conditions will not be embedded like actions because they involve a
235   manipulation of the state machine they are specified in. They have therefore
236   been taken out of the verbose action embedding form (using the <- compound
237   symbol). A new syntax for specifying conditions has been created: 
238   m = '\n' when {i==4};
239  -Fixed a bug which prevented state machine commands like fcurs, fcall, fret,
240   etc, from being accounted for in from-state actions and to-state actions.
241   This prevented some necessary support code from being generated.
242  -Implemented condition testing in remaining code generators.
243  -Configure script now checks for gperf, which is required for building.
244  -Added support for case-insensitive literal strings (in addition to regexes).
245   A case-insensitive string is made by appending an 'i' to the literal, as in
246   'cmd'i or "cmd"i.
247  -Fixed a bug which caused all or expressions inside of all regular
248   expressions to be case-insensitive. For example /[fo]o bar/ would make the
249   [fo] part case-insensitive even though no 'i' was given following the
250   regular expression.
251
252 Ragel 5.6 - Apr 1, 2006
253 =======================
254  -Added a left-guarded concatenation operator. This operator <: is equivalent
255   to ( expr1 $1 . expr2 >0 ). It is useful if you want to prefix a sequence
256   with a sequence of a subset of the characters it matches. For example, one
257   can consume leading whitespace before tokenizing a sequence of whitespace
258   separated words: ( ' '* <: ( ' '+ | [a-z]+ )** )
259  -Removed context embedding code, which has been dead since 5.0.
260   
261 Ragel 5.5 - Mar 28, 2006
262 ========================
263  -Implemented a case-insensitive option for regular expressions: /get/i.
264  -If no input file is given to the ragel program it reads from standard input.
265  -The label of the start state has been changed from START to IN to save on
266   required screen space.
267  -Bug fix: \0 was not working in literal strings, due to a change that reduced
268   memory usage by concatenating components of literal strings.  Token data
269   length is now passed from the scanner to the paser so that we do not need to
270   rely on null termination. 
271
272 Ragel 5.4 - Mar 12, 2006
273 ========================
274  -Eliminated the default transition from the frontend implementation. This
275   default transition was a space-saving optimization that at best could reduce
276   the number of allocated transitions by one half. Unfortunately it
277   complicated the implementation and this stood in the way of introducing
278   conditionals. The default transition may be reintroduced in the future.
279  -Added entry-guarded concatenation. This operator :>, is syntactic sugar
280   for expr1 $0 . expr >1. This operator terminates the matching of the first
281   machine when a first character of the second machine is matched. For
282   example in any* . ';' we never leave the any* machine. If we use any* :> ';'
283   then the any* machine is terminiated upon matching the semi-colon.
284  -Added finish-guarded concatenation. This operator :>>, is syntactic sugar
285   for expr1 $0 . expr @1. This operator is like entry guarded concatenation
286   except the first machine is terminated when the second machine enters a
287   final state. This is useful for delaying the guard until a full pattern is
288   matched. For example as in '/*' any* :>> '*/'.
289  -Added strong subtraction. Where regular subtraction removes from the first
290   machine any strings that are matched by the second machine, strong
291   subtraction removes any strings from the first that contain any strings of
292   the second as a substring. Strong subtraction is syntactic sugar for 
293   expr1 - ( any* expr2 any* ).
294  -Eliminated the use of priorities from the examples. Replaced with
295   subtraction, guarded concatenation and longest-match kleene star.
296  -Did some initial work on supporting conditional transitions. Far from
297   complete and very buggy. This code will only be active when conditionals are
298   used.
299
300 Ragel 5.3 - Jan 27, 2006
301 ========================
302  -Added missing semi-colons that cause the build to fail when using older
303   versions of Bison.
304  -Fix for D code: if the contents of an fexec is a single word, the generated
305   code will get interpreted as a C-style cast. Adding two brackets prevents
306   this. Can now turn eliminate the "access this.;" in cppscan5 that was used to
307   get around this problem.
308  -Improved some of the tag names in the intermediate format.
309  -Added unsigned long to the list of supported alphabet types.
310  -Added ids of actions and action lists to XML intermediate format. Makes it
311   more human readable.
312  -Updated to latest Aapl package.
313
314 Ragel 5.2 - Jan 6, 2006
315 ========================
316  -Ragel emits an error if the target of fentry, fcall, fgoto or fnext is inside
317   a longest match operator, or if an action embedding in a longest match
318   machine uses fcall. The fcall command can still be used in pattern actions.
319  -Made improvements to the clang, rlscan, awkemu and cppscan examples.
320  -Some fixes to generated label names: they should all be prefixed with _.
321  -A fix to the Vim syntax highlighting script was made
322  -Many fixes and updates to the documentation. All important features and
323   concepts are now documented. A second chapter describing Ragel's use
324   was added.
325  
326 Ragel 5.1 - Dec 22, 2005
327 ========================
328  -Fixes to the matching of section delimiters in Vim syntax file.
329  -If there is a longest match machine, the tokend var is now initialized by
330   write init. This is not necessary for correct functionality, however
331   prevents compiler warnings.
332  -The rlscan example was ported to the longest match operator and changed to
333   emit XML data.
334  -Fix to the error handling in the frontend: if there are errors in the lookup
335   of names at machine generation time then do not emit anything.
336  -If not compiling the full machine in the frontend (by using -M), avoid
337   errors and segfaults caused by names that are not part of the compiled
338   machine.
339  -Longest match bug fix: need to init tokstart when returing from fsm calls
340   that are inside longest match actions.
341  -In Graphviz drawing, the arrow into the start state is not a real
342   transition, do not draw to-state actions on the label.
343  -A bug fix to the handling of non-tag data within an XML tag was made.
344  -Backend exit value fixed: since the parser now accepts nothing so as to
345   avoid a redundant parse error when the frontend dies, we must force an
346   error. The backend should now be properly reporting errors.
347  -The longest match machine now has it's start state set final. An LM machine
348   is in a final state when it has not matched anything, when it has matched
349   and accepted a token and is ready for another, and when it has matched a
350   token but is waiting for some lookahead before determining what to do about
351   it (similar to kleene star).
352  -Element statement removed from some tests.
353  -Entry point names are propagated to the backend and used to label the entry
354   point arrows in Graphviz output.
355
356 Ragel 5.0 - Dec 17, 2005
357 ========================
358  (additional details in V5 release notes)
359  -Ragel has been split into two executables: A frontend which compiles
360   machines and emits them in an XML format, and a backend which generates code
361   or a Graphviz dot file from the XML input. The purpose of this split is to
362   allow Ragel to interface with other tools by means of the XML intermediate
363   format and to reduce complexity by strictly separating the previously
364   entangled phases. The intermediate format will provide a better platform
365   inspecting compiled machines and for extending Ragel to support other host
366   languages.
367  -The host language interface has been reduced significantly. Ragel no longer
368   expects the machine to be implemented as a structure or class and does not
369   generate functions corresponding to initialization, execution and EOF.
370   Instead, Ragel just generates the code of these components, allowing all of
371   them to be placed in a single function if desired. The user specifies a
372   machine in the usual manner, then indicates at which place in the program
373   text the state machine code is to be generated. This is done using the write
374   statement. It is possible to specify to Ragel how it should access the
375   variables it needs (such as the current state) using the access statement.
376  -The host language embedding delimiters have been changed. Single line
377   machines start with '%%' and end at newline. Multiline machines start with
378   '%%{' and end with '}%%'. The machine name is given with the machine
379   statement at the very beginning of the specification. This purpose of this
380   change is to make it easier separate Ragel code from the host language. This
381   will ease the addition of supported host languages.
382  -The structure and class parsing which was previously able to extract a
383   machine's name has been removed since this feature is dependent on the host
384   language and inhibits the move towards a more language-independent frontend.
385  -The init, element and interface statements have been made obsolete by the
386   new host language interface and have been removed.
387  -The fexec action statement has been changed to take only the new position to
388   move to. This statement is more useful for moving backwards and reparsing
389   input than for specifying a whole new buffer entirely and has been shifted
390   to this new use. Giving it only one argument also simplifies the parsing of
391   host code embedded in a Ragel specification. This will ease the addition of
392   supported host languages.
393  -Introduced the fbreak statement, which allows one to stop processing data
394   immediately. The machine ends up in the state that the current transition
395   was to go to. The current character is not changed.
396  -Introduced the noend option for writing the execute code. This inhibits
397   checking if we have reached pe. The machine will run until it goes into the
398   error state or fbreak is hit. This allows one to parse null-terminate
399   strings without first computing the length.
400  -The execute code now breaks out of the processing loop when it moves into
401   the error state. Previously it would run until pe was hit. Breaking out
402   makes the noend option useful when an error is encountered and allows
403   user code to determine where in the input the error occured. It also
404   eliminates needlessly iterating the input buffer.
405  -Introduced the noerror, nofinal and noprefix options for writing the machine
406   data. The first two inhibit the writing of the error state and the
407   first-final state should they not be needed. The noprefix eliminates the
408   prefixing of the data items with the machine name.
409  -Support for the D language has been added. This is specified in the backend
410   with the -D switch.
411  -Since the new host language interface has been reduced considerably, Ragel
412   no longer needs to distinguish between C-based languages. Support for C, C++
413   and Objective-C has been folded into one option in the backend: -C
414  -The code generator has been made independent of the languages that it
415   supports by pushing the language dependent apsects down into the lower
416   levels of the code generator.
417  -Many improvements to the longest match construction were made. It is no
418   longer considered experimental. A longest match machine must appear at the
419   top level of a machine instantiation. Since it does not generate a pure
420   state machine (it may need to backtrack), it cannot be used as an operand to
421   other operators.
422  -References to the current character and current state are now completely
423   banned in EOF actions.
424
425 Ragel 4.2 - Sep 16, 2005
426 ========================
427  (additional details in V4 release notes)
428  -Fixed a bug in the longest match operator. In some states it's possible that
429   we either match a token or match nothing at all. In these states we need to
430   consult the LmSwitch on error so it must be prepared to execute an error
431   handler. We therefore need to init act to this error value (which is zero).
432   We can compute if we need to do this and the code generator emits the
433   initialization only if necessary. 
434  -Changed the definition of the token end of longest match actions. It now
435   points to one past the last token. This makes computing the token length
436   easier because you don't have to add one. The longest match variables token
437   start, action identifier and token end are now properly initialized in
438   generated code. They don't need to be initialized in the user's code.
439  -Implemented to-state and from-state actions. These actions are executed on
440   transitions into the state (after the in transition's actions) and on
441   transitions out of the state (before the out transition's actions). See V4
442   release notes for more information.
443  -Since there are no longer any action embedding operators that embed both on
444   transitions and on EOF, any actions that exist in both places will be there
445   because the user has explicitly done so. Presuming this case is rare, and
446   with code duplication in the hands of the user, we therefore give the EOF
447   actions their own action switch in the finish() function. This is further
448   motivated by the fact that the best solution is to do the same for to-state
449   and from-state actions in the main loop.
450  -Longest match actions can now be specified using a named action. Since a
451   word following a longest match item conflicts with the concatenation of a
452   named machine, the => symbol must come immediately before a named action.
453  -The longest match operator permits action and machine definitions in the
454   middle of a longest match construction. These are parsed as if they came
455   before the machine definition they are contained in. Permitting action and
456   machine definitions in a longest match construction allows objects to be
457   defined closer to their use.
458  -The longest match operator can now handle longest match items with no
459   action, where previously Ragel segfaulted.
460  -Updated to Aapl post 2.12.
461  -Fixed a bug in epsilon transition name lookups. After doing a name lookup
462   the result was stored in the parse tree. This is wrong because if a machine
463   is used more than once, each time it may resolve to different targets,
464   however it will be stored in the same place. We now store name resolutions
465   in a separated data structure so that each walk of a parse tree uses the
466   name resolved during the corresponding walk in the name lookup pass.
467  -The operators used to embed context and actions into states have been
468   modified. The V4 release notes contain the full details.
469  -Added zlen builtin machine to represent the zero length machine. Eventually
470   the name "null" will be phased out in favour of zlen because it is unclear
471   whether null matches the zero length string or if it does not match any
472   string at all (as does the empty builtin).
473  -Added verbose versions of action, context and priority embedding. See the V4
474   release notes for the full details. A small example: 
475       machine <- all exec { foo(); } <- final eof act1
476  -Bugfix for machines with epsilon ops, but no join operations. I had 
477   wrongfully assumed that because epsilon ops can only increase connectivity,
478   that no states are ever merged and therefore a call to fillInStates() is not
479   necessary. In reality, epsilon transitions within one machine can induce the
480   merging of states. In the following, state 2 follows two paths on 'i':
481       main := 'h' -> i 'i h' i: 'i';
482  -Changed the license of the guide from a custom "do not propagate modified
483   versions of this document" license to the GPL.
484
485 Ragel 4.1 - Jun 26, 2005
486 ========================
487  (additional details in V4 release notes)
488  -A bug in include processing was fixed. Surrounding code in an include file
489   was being passed through to the output when it should be ignored. Includes
490   are only for including portions of another machine into he current. This
491   went unnoticed because all tested includes were wrapped in #ifndef ...
492   #endif directives and so did not affect the compilation of the file making
493   the include.
494  -Fixes were made to Vim syntax highlighting file.
495  -Duplicate actions are now removed from action lists.
496  -The character-level negation operator ^ was added. This operator produces a
497   machine that matches single characters that are not matched by the machine
498   it is applied to. This unary prefix operator has the same precedence level
499   as !.
500  -The use of + to specify the a positive literal number was discontinued.
501  -The parser now assigns the subtraction operator a higher precedence than
502   the negation of literal number.
503   
504 Ragel 4.0 - May 26, 2005
505 ========================
506  (additional details in V4 release notes)
507  -Operators now strictly embed into a machine either on a specific class of
508   characters or on EOF, but never both. This gives a cleaner association
509   between the operators and the physical state machine entitites they operate
510   on. This change is made up of several parts:
511   1. '%' operator embeds only into leaving characters.
512   2. All global and local error operators only embed on error character
513      transitions, their action will not be triggerend on EOF in non-final
514      states.
515   3. EOF action embedding operators have been added for all classes of states
516      to make up for functionality removed from other operators. These are 
517      >/ $/ @/ %/.
518   4. Start transition operator '>' no longer implicitly embeds into leaving
519      transtions when start state is final.
520  -Ragel now emits warnings about the improper use of statements and values in
521   action code that is embedded as an EOF action. Warnings are emitted for fpc,
522   fc, fexec, fbuf and fblen.
523  -Added a longest match construction operator |* machine opt-action; ... *|.
524   This is for repetition where an ability to revert to a shorter, previously
525   matched item is required. This is the same behaviour as flex and re2c. The
526   longest match operator is not a pure FSM construction, it introduces
527   transitions that implicitly hold the current character or reset execution to
528   a previous location in the input. Use of this operator requires the caller
529   of the machine to occasionally hold onto data after a call to the exectute
530   routine. Use of machines generated with this operator as the input to other
531   operators may have undefined results. See examples/cppscan for an example.
532   This is very experimental code.
533  -Action ids are only assigned to actions that are referenced in the final
534   constructed machine, preventing gaps in the action id sequence. Previously
535   an action id was assigned if the action was referenced during parsing.
536  -Machine specifications now begin with %% and are followed with an optional
537   name and either a single Ragel statement or a sequence of statements
538   enclosed in {}.
539  -Ragel no longer generates the FSM's structure or class. It is up to the user
540   to declare the structure and to give it a variable named curs of type
541   integer. If the machine uses the call stack the user must also declare a
542   array of integers named stack and an integer variable named top.
543  -In the case of Objective-C, Ragel no longer generates the interface or
544   implementation directives, allowing the user to declare additional methods.
545  -If a machine specification does not have a name then Ragel tries to find a
546   name for it by first checking if the specification is inside a struct, class
547   or interface. If it is not then it uses the name of the previous machine
548   specification. If still no name is found then this is an error.
549  -Fsm specifications now persist in memory and statements accumulate.
550  -Ragel now has an include statement for including the statements of a machine
551   spec in another file (perhaps because it is the corresponding header file).
552   The include statement can also be used to draw in the statements of another
553   fsm spec in the current file.
554  -The fstack statement is now obsolete and has been removed.
555  -A new statement, simply 'interface;', indicates that ragel should generate
556   the machine's interface. If Ragel sees the main machine it generates the
557   code sections of the machine. Previously, the header portion was generated
558   if the (now removed) struct statement was found and code was generated if
559   any machine definition was found.
560  -Fixed a bug in the resolution of fsm name references in actions. The name
561   resolution code did not recurse into inline code items with children
562   (fgoto*, fcall*, fnext*, and fexec), causing a segfault at code generation
563   time.
564  -Cleaned up the code generators. FsmCodeGen was made into a virtual base
565   class allowing for the language/output-style specific classes to inherit
566   both a language specific and style-specific base class while retaining only
567   one copy of FsmCodeGen. Language specific output can now be moved into the
568   language specific code generators, requiring less duplication of code in the
569   language/output-style specific leaf classes.
570  -Fixed bugs in fcall* implementation of IpgGoto code generation.
571  -If the element type has not been defined Ragel now uses a constant version
572   of the alphtype, not the exact alphtype. In most cases the data pointer of
573   the execute routine should be const. A non-const element type can still be
574   defined with the element statement.
575  -The fc special value now uses getkey for retrieving the current char rather
576   than *_p, which is wrong if the element type is a structure.
577  -User guide converted to TeX and updated for new 4.0 syntax and semantics.
578
579 Ragel 3.7 - Oct 31, 2004
580 ========================
581  -Bug fix: unreferenced machine instantiations causing segfault due to name
582   tree and parse tree walk becomming out of syncronization.
583  -Rewrote representation of inline code blocks using a tree data structure.
584   This allows special keywords such as fbuf to be used as the operatands of
585   other fsm commands.
586  -Documentation updates.
587  -When deciding whether or not to generate machine instantiations, search the
588   entire name tree beneath the instantiation for references, not just the
589   root.
590  -Removed stray ';' in keller2.rl
591  -Added fexec for restarting the machine with new buffer data (state stays the
592   same), fbuf for retrieving the the start of the buf, and fblen for
593   retrieving the orig buffer length.
594  -Implemented test/cppscan2 using fexec. This allows token emitting and restart
595   to stay inside the execute routine, instead of leaving and re-entering on
596   every token.
597  -Changed examples/cppscan to use fexec and thereby go much faster.
598  -Implemented flex and re2c versions of examples/cppscan. Ragel version
599   goes faster than flex version but not as fast as re2c version.
600  -Merged in Objective-C patch from Erich Ocean.
601  -Turned off syncing with stdio in C++ tests to make them go faster.
602  -Renamed C++ code generaion classes with the Cpp Prefix instead of CC to make
603   them easier to read.
604  -In the finish function emit fbuf as 0 cast to a pointer to the element type
605   so it's type is not interpreted as an integer.
606  -The number -128 underflows char alphabets on some architectures. Removed
607   uses of it in tests.
608  -Disabled the keller2 test because it causes problems on many architectures
609   due to its large size and compilation requirements.
610
611 Ragel 3.6 - Jul 10, 2004
612 ========================
613  -Many documentation updates.
614  -When resolving names, return a set of values so that a reference in an
615   action block that is embedded more than once won't report distinct entry
616   points that are actually the same.
617  -Implemented flat tables. Stores a linear array of indicies into the
618   transition array and only a low and high key value. Faster than binary
619   searching for keys but not usable for large alphabets.
620  -Fixed bug in deleting of transitions leftover from converstion from bst to
621   list implementation of transitions. Other code cleanup.
622  -In table based output calculate the cost of using an index. Don't use if
623   cheaper. 
624  -Changed fstate() value available in init and action code to to fentry() to
625   reflect the fact that the values returned are intended to be used as targets
626   in fgoto, fnext and fcall statements. The returned state is not a unique
627   state representing the label. There can be any number of states representing
628   a label.
629  -Added keller2 test, C++ scanning tests and C++ scanning example.
630  -In table based output split up transitions into targets and actions. This
631   allows actions to be omitted.
632  -Broke the components of the state array into separate arrays. Requires
633   adding some fields where they could previously be omitted, however allows
634   finer grained control over the sizes of items and an overal size reduction.
635   Also means that state numbers are not an offset into the state array but
636   instead a sequence of numbers, meaning the context array does not have any
637   wasted bits.
638  -Action lists and transition also have their types chosen to be the smallest
639   possible for accomodating the contained values.
640  -Changed curs state stored in fsm struct from _cs to curs. Keep fsm->curs ==
641   -1 while in machine. Added tests curs1 and curs2.
642  -Implemented the notion of context. Context can be embedded in states using
643   >:, $:, @: and %: operators. These embed a named context into start states,
644   all states, non-start/non-final and final states. If the context is declared
645   using a context statment
646     context name;
647   then the context can be quered for any state using fsm_name_ctx_name(state)
648   in C code and fsm_name::ctx_name(state) in C++ code. This feature makes it
649   possible to determine what "part" of the machine is currently active.
650  -Fixed crash on machine generation of graphs with no final state. If there
651   is no reference to a final state in a join operation, don't generate one. 
652  -Updated Vim sytax: added labels to inline code, added various C++ keywords.
653   Don't highlight name separations as labels. Added switch labels, improved
654   alphtype, element and getkey.
655  -Fixed line info in error reporting of bad epsilon trans. 
656  -Fixed fstate() for tab code gen.
657  -Removed references to malloc.h.
658
659 Ragel 3.5 - May 29, 2004
660 ========================
661  -When parse errors occur, the partially generated output file is deleted and
662   an non-zero exit status is returned.
663  -Updated Vim syntax file.
664  -Implemented the setting of the element type that is passed to the execute
665   routine as well as method for specifying how ragel should retrive the key
666   from the element type. This lets ragel process arbitrary structures inside
667   of which is the key that is parsed.
668       element struct Element;
669       getkey fpc->character;
670  -The current state is now implemented with an int across all machines. This
671   simplifies working with current state variables. For example this allows a
672   call stack to be implemented in user code.
673  -Implemented a method for retrieving the current state, the target state, and
674   any named states. 
675       fcurs           -retrieve the current state
676       ftargs          -retrieve the target state
677       fstate(name)    -retrieve a named state.
678  -Implemented a mechanism for jumping to and calling to a state stored in a
679   variable.
680       fgoto *<expr>;  -goto the state returned by the C/C++ expression.
681       fcall *<expr>;  -call the state returned by the C/C++ expression.
682  -Implemented a mechanism for specifying the next state without immediately
683   transfering control there (any code following statement is executed).
684       fnext label;    -set the state pointed to by label as the next state.
685       fnext *<expr>;  -set the state returned by the C/C++ expression as the
686                        next.
687  -Action references are determined from the final machine instead of during
688   the parse tree walk. Some actions can be referenced in the parse tree but not
689   show up in the final machine. Machine analysis is now done based on this new
690   computation.
691  -Named state lookup now employs a breadth-first search in the lookup and
692   allows the user to fully qualify names, making it possible to specify
693   jumps/calls into parts of the machine deep in the name hierarchy. Each part
694   of name (separated by ::) employs a breadth first search from it's starting
695   point.
696  -Name references now must always refer to a single state. Since references to
697   multiple states is not normally intended, it no longer happens
698   automatically. This frees the programmer from thinking about whether or not
699   a state reference is unique. It also avoids the added complexity of
700   determining when to merge the targets of multiple references. The effect of
701   references to multiple states can be explicitly created using the join
702   operator and epsilon transitions.
703  -M option was split into -S and -M. -S specifies the machine spec to generate
704   for graphviz output and dumping. -M specifies the machine definition or
705   instantiation.
706  -Machine function parameters are now prefixed with and underscore to
707   avoid the hiding of class members.
708
709 Ragel 3.4 - May 8, 2004
710 =======================
711  -Added the longest match kleene star operator **, which is synonymous 
712   with ( ( <machine> ) $0 %1 ) *.
713  -Epsilon operators distinguish between leaving transitions (going to an
714   another expression in a comma separated list) and non-leaving transitions.
715   Leaving actions and priorities are appropriately transferred.
716  -Relative priority of following ops changed to:
717       1. Action/Priority 
718       2. Epsilon 
719       3. Label
720   If label is done first then the isolation of the start state in > operators
721   will cause the label to point to the old start state that doesn't have the
722   new action/priority.
723  -Merged >! and >~, @! and @~, %! and %~, and $! and $~ operators to have one
724   set of global error action operators (>!, @!, %! and $!) that are invoked on
725   error by unexpected characters as well as by unexepected EOF.
726  -Added the fpc keyword for use in action code. This is a pointer to the
727   current character. *fpc == fc. If an action is invoked on EOF then fpc == 0.
728  -Added >^, @^, %^, and $^ local error operators. Global error operators (>!,
729   @!, $!, and %!) cause actions to be invoked if the final machine fails.
730   Local error actions cause actions to be invoked if if the current machine
731   fails.
732  -Changed error operators to mean embed global/local error actions in:
733      >! and !^  -the start state.
734      @! and @^  -states that are not the start state and are not final.
735      %! and %^  -final states.
736      $! and $^  -all states.
737  -Added >@! which is synonymous >! then @!
738  -Added >@^ which is synonymous >^ then @^
739  -Added @%! which is synonymous @! then %!
740  -Added @%^ which is synonymous >^ then @^
741  -FsmGraph representation of transition lists was changed from a mapping of
742   alphabet key -> transition objects using a BST to simply a list of
743   transition objects. Since the transitions are no longer divided by
744   single/range, the fast finding of transition objects by key is no longer
745   required functionality and can be eliminated. This new implementation uses
746   the same amount of memory however causes less allocations. It also make more
747   sense for supporting error transitions with actions. Previously an error
748   transition was represented by a null value in the BST.
749  -Regular expression ranges are checked to ensure that lower <= upper.
750  -Added printf-like example.
751  -Added atoi2, erract2, and gotcallret to the test suite.
752  -Improved build test to support make -jN and simplified the compiling and
753   running of tests.
754
755 Ragel 3.3 - Mar 7, 2004
756 =========================
757  -Portability bug fixes were made. Minimum and maximum integer values are
758   now taken from the system. An alignment problem on 64bit systems
759   was fixed.
760
761 Ragel 3.2 - Feb 28, 2004
762 ========================
763  -Added a Vim syntax file.
764  -Eliminated length var from generated execute code in favour of an end
765   pointer. Using length requires two variables be read and written. Using an
766   end pointer requires one variable read and written and one read. Results in
767   more optimizable code.
768  -Minimization is now on by default.
769  -States are ordered in output by depth first search.
770  -Bug in minimization fixed. States were not being distinguished based on
771   error actions. 
772  -Added null and empty builtin machines.
773  -Added EOF error action operators. These are >~, >@, $~, and %~. EOF error
774   operators embed actions to take if the EOF is seen and interpreted as an
775   error. The operators correspond to the following states:
776     -the start state
777     -any state with a transition to a final state
778     -any state with a transiion out
779     -a final state
780  -Fixed bug in generation of unreference machine vars using -M. Unreferenced
781   vars don't have a name tree built underneath when starting from
782   instantiations. Need to instead build the name tree starting at the var.
783  -Calls, returns, holds and references to fc in out action code are now
784   handled for ipgoto output.
785  -Only actions referenced by an instantiated machine expression are put into
786   the action index and written out.
787  -Added rlscan, an example that lexes Ragel input.
788
789 Ragel 3.1 - Feb 18, 2004
790 ========================
791  -Duplicates in OR literals are removed and no longer cause an assertion
792   failure.
793  -Duplicate entry points used in goto and call statements are made into
794   deterministic entry points.
795  -Base FsmGraph code moved from aapl into ragel, as an increasing amount
796   of specialization is required. Too much time was spent attempting to
797   keep it as a general purpose template.
798  -FsmGraph code de-templatized and heirarchy squashed to a single class.
799  -Single transitions taken out of FsmGraph code. In the machine construction
800   stage, transitions are now implemented only with ranges and default
801   transtions. This reduces memory consumption, simplifies code and prevents
802   covered transitions. However it requires the automated selection of single
803   transitions to keep goto-driven code lean.
804  -Machine reduction completely rewritten to be in-place. As duplicate
805   transitions and actions are found and the machine is converted to a format
806   suitable for writing as C code or as GraphViz input, the memory allocated
807   for states and transitions is reused, instead of newly allocated.
808  -New reduction code consolodates ranges, selects a default transition, and
809   selects single transitions with the goal of joining ranges that are split by
810   any number of single characters.
811  -Line directive changed from "# <num> <file>" to the more common format
812   "#line <num> <file>".
813  -Operator :! changed to @!. This should have happened in last release.
814  -Added params example.
815
816 Ragel 3.0 - Jan 22, 2004
817 ========================
818  -Ragel now parses the contents of struct statements and action code. 
819  -The keyword fc replaces the use of *p to reference the current character in
820   action code.
821  -Machine instantiations other than main are allowed.
822  -Call, jump and return statements are now available in action code. This
823   facility makes it possible to jump to an error handling machine, call a
824   sub-machine for parsing a field or to follow paths through a machine as
825   determined by arbitrary C code.
826  -Added labels to the language. Labels can be used anywhere in a machine
827   expression to define an entry point. Also references to machine definitions
828   cause the implicit creation of a label.
829  -Added epsilon transitions to the language. Epsilon operators may reference
830   labels in the current name scope resolved when join operators are evaluated
831   and at the root of the expression tree of machine assignment/instantiation.
832  -Added the comma operator, which joins machines together without drawing any
833   transitions between them. This operator is useful in combination with
834   labels, the epsilon operator and user code transitions for defining machines
835   using the named state and transition list paradigm. It is also useful for
836   invoking transitions based on some analysis of the input or on the
837   environment.
838  -Added >!, :!, $!, %! operators for specifying actions to take should the
839   machine fail. These operators embed actions to execute if the machine
840   fails in
841     -the start state
842     -any state with a transition to a final state
843     -any state with a transiion out
844     -a final state
845   The general rule is that if an action embedding operator embeds an action
846   into a set of transitions T, then the error-counterpart with a !  embeds an
847   action into the error transition taken when any transition T is a candidate,
848   but does not match the input.
849  -The finishing augmentation operator ':' has been changed to '@'. This
850   frees the ':' symbol for machine labels and avoids hacks to the parser to
851   allow the use of ':' for both labels and finishing augmentations. The best
852   hack required that label names be distinct from machine definition names as
853   in main := word : word; This restriction is not good because labels are
854   local to the machine that they are used in whereas machine names are global
855   entities. Label name choices should not be restricted by the set of names
856   that are in use for machines.
857  -Named priority syntax now requires parenthesis surrounding the name and
858   value pair. This avoids grammar ambiguities now that the ',' operator has
859   been introduced and makes it more clear that the name and value are an
860   asscociated pair.
861  -Backslashes are escaped in line directive paths.
862
863 Ragel 2.2 - Oct 6, 2003
864 =======================
865  -Added {n}, {,n}, {n,} {n,m} repetition operators.
866     <expr> {n}    -- exactly n repetitions
867     <expr> {,n}   -- zero to n repetitions
868     <expr> {n,}   -- n or more repetitions
869     <expr> {n,m}  -- n to m repetitions
870  -Bug in binary search table in Aapl fixed. Fixes crashing on machines that
871   add to action tables that are implicitly shared among transitions.
872  -Tests using obsolete minimization algorithms are no longer built and run by
873   default.
874  -Added atoi and concurrent from examples to the test suite.
875
876 Ragel 2.1 - Sep 22, 2003
877 ========================
878  -Bug in priority comparison code fixed. Segfaulted on some input with many
879   embedded priorities.
880  -Added two new examples.
881
882 Ragel 2.0 - Sep 7, 2003
883 =======================
884  -Optional (?), One or More (+) and Kleene Star (*) operators changed from
885   prefix to postfix. Rationale is that postfix version is far more common in
886   regular expression implementations and will be more readily understood.
887  -All priority values attached to transitions are now accompanied by a name.
888   Transitions no longer have default priority values of zero assigned
889   to them. Only transitions that have different priority values assigned
890   to the same name influence the NFA-DFA conversion. This scheme reduces
891   side-effects of priorities.
892  -Removed the %! statement for unsetting pending out priorities. With
893   named priorities, it is not necessary to clear the priorities of a
894   machine with $0 %! because non-colliding names can be used to avoid
895   side-effects.
896  -Removed the clear keyword, which was for removing actions from a machine.
897   Not required functionality and it is non-intuitive to have a language
898   feature that undoes previous definitions.
899  -Removed the ^ modifier to repetition and concatenation operators. This
900   undocumented feature prevented out transitions and out priorities from being
901   transfered from final states to transitions leaving machines. Not required
902   functionality and complicates the language unnecessarily.
903  -Keyword 'func' changed to 'action' as a part of the phasing out of the term
904   'function' in favour of 'action'. Rationale is that the term 'function'
905   implies that the code is called like a C function, which is not necessarily
906   the case. The term 'action' is far more common in state machine compiler
907   implementations.
908  -Added the instantiation statement, which looks like a standard variable
909   assignment except := is used instead of =. Instantiations go into the
910   same graph dictionary as definitions. In the the future, instantiations
911   will be used as the target for gotos and calls in action code.
912  -The main graph should now be explicitly instantiated. If it is not,
913   a warning is issued.
914  -Or literal basic machines ([] outside of regular expressions) now support
915   negation and ranges. 
916  -C and C++ interfaces lowercased. In the C interface an underscore now
917   separates the fsm machine and the function name. Rationale is that lowercased
918   library and generated routines are more common.
919     C output:
920       int fsm_init( struct clang *fsm );
921       int fsm_execute( struct clang *fsm, char *data, int dlen );
922       int fsm_finish( struct clang *fsm );
923     C++ output:
924       int fsm::init( );
925       int fsm::execute( char *data, int dlen );
926       int fsm::finish( );
927  -Init, execute and finish all return -1 if the machine is in the error state
928   and can never accept, 0 if the machine is in a non-accepting state that has a
929   path to a final state and 1 if the machine is in an accepting state.
930  -Accept routine eliminated. Determining whether or not the machine accepts is
931   done by examining the return value of the finish routine.
932  -In C output, fsm structure is no longer a typedef, so referencing requires
933   the struct keyword. This is to stay in line with C language conventions.
934  -In C++ output, constructor is no longer written by ragel. As a consequence,
935   init routine is not called automatically. Allows constructor to be supplied
936   by user as well as the return value of init to be examined without calling it
937   twice.
938  -Static start state and private structures are taken out of C++ classes.
939
940 Ragel 1.5.4 - Jul 14, 2003
941 ==========================
942  -Workaround for building with bison 1.875, which produces an
943   optimization that doesn't build with newer version gcc.
944
945 Ragel 1.5.3 - Jul 10, 2003
946 ==========================
947  -Fixed building with versions of flex that recognize YY_NO_UNPUT.
948  -Fixed version numbers in ragel.spec file.
949
950 Ragel 1.5.2 - Jul 7, 2003
951 =========================
952  -Transition actions and out actions displayed in the graphviz output.
953  -Transitions on negative numbers handled in graphviz output.
954  -Warning generated when using bison 1.875 now squashed.
955  
956 Ragel 1.5.1 - Jun 21, 2003
957 ==========================
958  -Bugs fixed: Don't delete the output objects when writing to standard out.
959   Copy mem into parser buffer with memcpy, not strcpy. Fixes buffer mem errror.
960  -Fixes for compiling with Sun WorkShop 6 compilers.
961
962 Ragel 1.5.0 - Jun 10, 2003
963 ==========================
964  -Line directives written to the output so that errors in the action code
965   are properly reported in the ragel input file.
966  -Simple graphviz dot file output format is supported. Shows states and
967   transitions. Does not yet show actions.
968  -Options -p and -f dropped in favour of -d output format.
969  -Added option -M for specifying the machine to dump with -d or the graph to
970   generate with -V.
971  -Error recovery implemented.
972  -Proper line and column number tracking implemented in the scanner.
973  -All action/function code is now embedded in the main Execute routine. Avoids
974   duplication of action code in the Finish routine and the need to call
975   ExecFuncs which resulted in huge code bloat. Will also allow actions to
976   modify cs when fsm goto, call and return is supported in action code.
977  -Fsm spec can have no statements, nothing will be generated.
978  -Bug fix: Don't accept ] as the opening of a .-. range a reg exp.
979  -Regular expression or set ranges (ie /[0-9]/) are now handled by the parser
980   and consequently must be well-formed. The following now generates a parser
981   error: /[+-]/ and must be rewritten as /[+\-]/. Also fixes a bug whereby ]
982   might be accepted as the opening of a .-. range causing /[0-9]-[0-9]/ to
983   parse incorrectly.
984  -\v, \f, and \r are now treated as whitespace in an fsm spec.
985
986 Ragel 1.4.1 - Nov 19, 2002
987 ==========================
988  -Compile fixes. The last release (integer alphabets) was so exciting
989   that usual portability checks got bypassed.
990
991 Ragel 1.4.0 - Nov 19, 2002
992 ==========================
993  -Arbitrary integer alphabets are now fully supported! A new language
994   construct:
995   'alphtype <type>' added for specifying the type of the alphabet. Default
996   is 'char'. Possible alphabet types are:
997        char, unsigned char, short, unsigned short, int, unsigned int
998  -Literal machines specified in decimal format can now be negative when the
999   alphabet is a signed type.
1000  -Literal machines (strings, decimal and hex) have their values checked for
1001   overflow/underflow against the size of the alphabet type.
1002  -Table driven and goto driven output redesigned to support ranges. Table
1003   driven uses a binary search for locating single characters and ranges. Goto
1004   driven uses a switch statement for single characters and nested if blocks for
1005   ranges.
1006  -Switch driven output removed due to a lack of consistent advantages. Most of
1007   the time the switch driven FSM is of no use because the goto FSM makes
1008   smaller and faster code. Under certain circumstances it can produce smaller
1009   code than a goto driven fsm and be almost as fast, but some sporadic case
1010   does not warrant maintaining it.
1011  -Many warnings changed to errors.
1012  -Added option -p for printing the final fsm before minimization. This lets
1013   priorities be seen. Priorties are all reset to 0 before minimization. The
1014   exiting option -f prints the final fsm after minimization.
1015  -Fixed a bug in the clang test and example that resulted in redundant actions
1016   being executed.
1017
1018 Ragel 1.3.4 - Nov 6, 2002
1019 =========================
1020  -Fixes to Chapter 1 of the guide.
1021  -Brought back the examples and made them current.
1022  -MSVC is no longer supported for compiling windows binaries because its
1023   support for the C++ standard is frustratingly inadequate, it will cost money
1024   to upgrade if it ever gets better, and MinGW is a much better alternative.
1025  -The build system now supports the --host= option for building ragel
1026   for another system (used for cross compiling a windows binary with MinGW).
1027  -Various design changes and fixes towards the goal of arbitrary integer
1028   alphabets and the handling of larger state machines were made.
1029  -The new shared vector class is now used for action lists in transitions and
1030   states to reduce memory allocations.
1031  -An avl tree is now used for the reduction of transitions and functions of an
1032   fsm graph before making the final machine. The tree allows better scalability
1033   and performance by not requiring consecutively larger heap allocations.
1034  -Final stages in the separation of fsm graph code from action embedding and
1035   priority assignment is complete. Makes the base graph leaner and easier to reuse
1036   in other projects (like Keller).
1037
1038 Ragel 1.3.3 - Oct 22, 2002
1039 ==========================
1040  -More diagrams were added to section 1.7.1 of the user guide.
1041  -FSM Graph code was reworked to spearate the regex/nfa/minimizaion graph
1042   algorithms from the manipulation of state and transition properties.
1043  -An rpm spec file from Cris Bailiff was added. This allows an rpm for ragel
1044   to be built with the command 'rpm -ta ragel-x.x.x.tar.gz'
1045  -Fixes to the build system and corresponding doc updates in the README.
1046  -Removed autil and included the one needed source file directly in the top
1047   level ragel directory.
1048  -Fixed a bug that nullified the 20 times speedup in large compilations
1049   claimed by the last version.
1050  -Removed awk from the doc build (it was added with the last release -- though
1051   not mentioned in the changelog).
1052  -Install of man page was moved to the doc dir. The install also installs the
1053   user guide to $(PREFIX)/share/doc/ragel/
1054
1055 Ragel 1.3.2 - Oct 16, 2002
1056 ==========================
1057  -Added option -v (or --version) to show version information.
1058  -The subtract operator no longer removes transition data from the machine
1059   being subtracted. This is left up to the user for the purpose of making it
1060   possible to transfer transitions using subtract and also for speeding up the
1061   subtract routine. Note that it is possible to explicitly clear transition
1062   data before a doing a subtract.
1063  -Rather severe typo bug fixed. Bug was related to transitions with higher
1064   priorities taking precedence. A wrong ptr was being returned. It appears to
1065   have worked most of the time becuase the old ptr was deleted and the new one
1066   allocated immediatly after so the old ptr often pointed to the same space.
1067   Just luck though.
1068  -Bug in the removing of dead end paths was fixed. If the start state
1069   has in transitions then those paths were not followed when finding states to
1070   keep. Would result in non-dead end states being removed from the graph.
1071  -In lists and in ranges are no longer maintained as a bst with the key as the
1072   alphabet character and the value as a list of transitions coming in on that
1073   char. There is one list for each of inList, inRange and inDefault. Now that
1074   the required functionality of the graph is well known it is safe to remove
1075   these lists to gain in speed and footprint. They shouldn't be needed.
1076  -IsolateStartState() runs on modification of start data only if the start
1077   state is not already isolated, which is now possible with the new in list
1078   representation.
1079  -Concat, Or and Star operators now use an approximation to
1080   removeUnreachableStates that does not require a traversal of the entire
1081   graph. This combined with an 'on-the-fly' management of final bits and final
1082   state status results is a dramatic speed increase when compiling machines
1083   that use those operators heavily. The strings2 test goes 20 times faster.
1084  -Before the final minimization, after all fsm operations are complete,
1085   priority data is reset which enables better minimization in cases where
1086   priorities would otherwise separate similar states.
1087  
1088 Ragel 1.3.1 - Oct 2, 2002
1089 =========================
1090  -Range transitions are now used to implement machines made with /[a-z]/ and
1091   the .. operator as well as most of the builtin machines. The ranges are not
1092   yet reflected in the output code, they are expanded as if they came from the
1093   regular single transitions. This is one step closer to arbitrary integer
1094   output.
1095  -The builtin machine 'any' was added. It is equiv to the builtin extend,
1096   matching any characters.
1097  -The builtin machine 'cntrl' now includes newline.
1098  -The builtin machine 'space' now includes newline.
1099  -The builtin machine 'ascii' is now the range 0-127, not all characters.
1100  -A man page was written.
1101  -A proper user guide was started. Chapter 1: Specifying Ragel Programs
1102   was written. It even has some diagrams :)
1103
1104 Ragel 1.3.0 - Sept 4, 2002
1105 ==========================
1106  -NULL keyword no longer used in table output.
1107  -Though not yet in use, underlying graph structure changed to support range
1108   transitions. As a result, most of the code that walks transition lists is now
1109   implemented with an iterator that hides the complexity of the transition
1110   lists and ranges. Range transitions will be used to implement /[a-z]/ style
1111   machines and machines made with the .. operator. Previously a single
1112   transition would be used for each char in the range, which is very costly.
1113   Ranges eliminate much of the space complexity and allow for the .. operator
1114   to be used with very large (integer) alphabets.
1115  -New minimization similar to Hopcroft's alg. It does not require n^2 space and
1116   runs close to O(n*log(n)) (an exact analysis of the alg is very hard). It is
1117   much better than the stable and approx minimization and obsoletes them both.
1118   An exact implementation of Hopcroft's alg is desirable but not possible
1119   because the ragel implementation does not assume a finite alphabet, which
1120   Hopcroft's requires. Ragel will support arbitrary integer alphabets which
1121   must be treated as an infinite set for implementation considerations.
1122  -New option -m using above described minimization to replace all previous
1123   minimization options. Old options sill work but are obsolete and not
1124   advertised with -h.
1125  -Bug fixed in goto style output. The error exit set the current state to 0,
1126   which is actually a valid state. If the machine was entered again it would go
1127   into the first state, very wrong. If the first state happened to be final then
1128   an immediate finish would accept when in fact it should fail.
1129  -Slightly better fsm minimization now capable due to clearing of the
1130   transition ordering numbers just prior to minimization. 
1131  
1132 Ragel 1.2.2 - May 25, 2002
1133 ==========================
1134  -Configuration option --prefix now works when installing.
1135  -cc file extension changed to cpp for better portability.
1136  -Unlink of output file upon error no longer happens, removes dependency on
1137   unlink system command.
1138  -All multiline strings removed: not standard c++.
1139  -Awk build dependency removed.
1140  -MSVC 6.0 added to the list of supported compilers (with some tweaking of
1141   bison and flex output).
1142
1143 Ragel 1.2.1 - May 13, 2002
1144 ==========================
1145  -Automatic dependencies were fixed, they were not working correctly.
1146  -Updated AUTHORS file to reflect contributors.
1147  -Code is more C++ standards compliant: compiles with g++ 3.0
1148  -Fixed bugs that only showed up in g++ 3.0
1149  -Latest (unreleased) Aapl.
1150  -Configuration script bails out if bison++ is installed. Ragel will not
1151   compile with bison++ because it is coded in c++ and bison++ automatically
1152   generates a c++ parser. Ragel uses a c-style bison parser.
1153
1154 Ragel 1.2.0 - May 3, 2002
1155 =========================
1156  -Underlying graph structure now supports default transitions. The result is
1157   that a transition does not need to be made for each char of the alphabet
1158   when making 'extend' or '/./' machines. Ragel compiles machines that
1159   use the aforementioned primitives WAY faster.
1160  -The ugly hacks needed to pick default transitions now go away due to
1161   the graph supporting default transitions directly.
1162  -If -e is given, but minimization is not turned on, print a warning.
1163  -Makefiles use automatic dependencies.
1164
1165 Ragel 1.1.0 - April 15, 2002
1166 ============================
1167  -Added goto fsm: much faster than any other fsm style.
1168  -Default operator (if two machines are side by side with no operator
1169   between them) is concatenation. First showed up in 1.0.4.
1170  -The fsm machine no longer auotmatically builds the flat table for
1171   transition indicies. Instead it keeps the key,ptr pair. In tabcodegen
1172   the flat table is produced. This way very large alphabets with sparse
1173   transitions will not consume large amounts of mem. This is also in prep
1174   for fsm graph getting a default transition.
1175  -Generated code contains a statement explicitly stating that ragel fsms
1176   are NOT covered by the GPL. Technically, Ragel copies part of itself
1177   to the output to make the generic fsm execution routine (for table driven
1178   fsms only) and so the output could be considered under the GPL. But this
1179   code is very trivial and could easlily be rewritten. The actual fsm data
1180   is subject to the copyright of the source. To promote the use of Ragel,
1181   a special exception is made for the part of the output copied from Ragel:
1182   it may be used without restriction.
1183  -Much more elegant code generation scheme is employed. Code generation
1184   class members need only put the 'codegen' keyword after their 'void' type
1185   in order to be automatically registerd to handle macros of the same name.
1186   An awk script recognises this keyword and generates an appropriate driver.
1187  -Ragel gets a test suite.
1188  -Postfunc and prefunc go away because they are not supported by non
1189   loop-driven fsms (goto, switch) and present duplicate functionality. 
1190   Universal funcs can be implemented by using $ operator.
1191  -Automatic dependencies used in build system, no more make depend target.
1192  -Code generation section in docs.
1193  -Uses the latests aapl.
1194
1195 Ragel 1.0.5 - March 3, 2002
1196 ===========================
1197  -Bugfix in SetErrorState that caused an assertion failure when compiling
1198   simple machines that did not have full transition tables (and thus did
1199   not show up on any example machines). Assertion failure did not occur
1200   when using the switch statement code as ragel does not call SetErrorState
1201   in that case.
1202  -Fixed some missing includes, now compiles on redhat.
1203  -Moved the FsmMachTrans Compare class out of FsmMachTrans. Some compilers
1204   don't deal with nested classes in templates too well.
1205  -Removed old unused BASEREF in fsmgraph and ragel now compiles using
1206   egcs-2.91.66 and presumably SUNWspro. The baseref is no longer needed
1207   because states do not support being elements in multiple lists. I would
1208   rather be able to support more compilers than have this feature.
1209  -Started a README with compilation notes. Started an AUTHORS file.
1210  -Started the user documentation. Describes basic machines and operators.
1211
1212 Ragel 1.0.4 - March 1, 2002
1213 ===========================
1214  -Ported to the version of Aapl just after 2.2.0 release. See 
1215   http://www.ragel.ca/aapl/ for details on aapl.
1216  -Fixed a bug in the clang example: the newline machine was not stared.
1217  -Added explanations to the clang and mailbox examples. This should
1218   help people that want to learn the lanuage as the manual is far from
1219   complete.
1220
1221 Ragel 1.0.3 - Feb 2, 2002
1222 =========================
1223  -Added aapl to the ragel tree. No longer requires you to download
1224   and build aapl separately. Should avoid discouraging impatient users
1225   from compiling ragel.
1226  -Added the examples to the ragel tree.
1227  -Added configure script checks for bison and flex.
1228  -Fixed makefile so as not to die with newer versions of bison that
1229   write the header of the parser to a .hh file.
1230  -Started ChangeLog file.
1231
1232 Ragel 1.0.2 - Jan 30, 2002
1233 ==========================
1234  -Bug fix in calculating highIndex for table based code. Was using
1235   the length of out tranisition table rather than the value at the
1236   end.
1237  -If high/low index are at the limits, output a define in their place,
1238   not the high/low values themselves so as not to cause compiler warnings.
1239  -If the resulting machines don't have any indicies or functions, then
1240   omit the empty unrefereced static arrays so as not to cause compiler
1241   warnings about unused static vars.
1242  -Fixed variable sized indicies support. The header cannot have any
1243   reference to INDEX_TYPE as that info is not known at the time the header
1244   data is written. Forces us to use a void * for pointers to indicies. In
1245   the c++ versions we are forced to make much of the data non-member
1246   static data in the code portion for the same reason.
1247
1248 Ragel 1.0.1 - Jan 28, 2002
1249 ==========================
1250  -Exe name change from reglang to ragel.
1251  -Added ftabcodegen output code style which uses a table for states and
1252   transitions but uses a switch statement for the function execution.
1253  -Reformatted options in usage dump to look better.
1254  -Support escape sequences in [] sections of regular expressions.
1255
1256 Ragel 1.0 - Jan 25, 2002
1257 ========================
1258  -Initial release.