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