Some additional fixes before release.
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Wed, 14 Feb 2007 00:34:23 +0000 (00:34 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Wed, 14 Feb 2007 00:34:23 +0000 (00:34 +0000)
git-svn-id: http://svn.complang.org/ragel/trunk@112 052ea7fc-9027-0410-9066-f65837a77df0

ChangeLog
doc/Makefile.in
doc/ragel-guide.tex

index cec5e35..c848c8e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,5 @@
-Ragel 5.18 - TBD 
-================
+Ragel 5.18 - February 13, 2007
+==============================
  -There is now a 100% correspondence between state id numbers in the
   intermediate XML file, Graphviz dot files and generated code. This was
   achieved by moving code which determines if the error state is necessary
index 4448958..6ef0d57 100644 (file)
@@ -65,7 +65,10 @@ distclean: clean
 install: all
        install -d $(PREFIX)/man/man1
        install -m 644 ragel.1 $(PREFIX)/man/man1/ragel.1
-       install -m 644 rlcodegen.1 $(PREFIX)/man/man1/rlcodegen.1
+       install -m 644 rlgen-dot.1 $(PREFIX)/man/man1/rlgen-dot.1
+       install -m 644 rlgen-cd.1 $(PREFIX)/man/man1/rlgen-cd.1
+       install -m 644 rlgen-java.1 $(PREFIX)/man/man1/rlgen-java.1
+       install -m 644 rlgen-ruby.1 $(PREFIX)/man/man1/rlgen-ruby.1
        install -d $(PREFIX)/share/doc/ragel
        install -m 644 ragel-guide.pdf $(PREFIX)/share/doc/ragel/ragel-guide.pdf
        gzip -c ../ChangeLog > ChangeLog.gz
index 5059031..3f22592 100644 (file)
@@ -178,9 +178,10 @@ code with the sub-expressions of a regular expression in a way that does not
 disrupt its syntax.
 
 The primary goal of Ragel is to provide developers with an ability to embed
-actions into the transitions and states of a regular expression in support of the
+actions into the transitions and states of a regular expression's state machine
+in support of the
 definition of entire parsers or large sections of parsers using a single
-regular expression that is compiled to a finite state machine.  From the
+regular expression.  From the
 regular expression we gain a clear and concise statement of our language. From
 the state machine we obtain a very fast and robust executable that lends itself
 to many kinds of analysis and visualization.