Fix a longstanding bug reported by Guillaume Sadegh.

* src/eltlparse/eltlscan.ll: Fix a typo.
This commit is contained in:
Damien Lefortier 2010-01-06 09:37:05 +01:00
parent 830e482836
commit 88df8c0a1d
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2010-01-06 Damien Lefortier <dam@lrde.epita.fr>
Fix a longstanding bug reported by Guillaume Sadegh.
* src/eltlparse/eltlscan.ll: Fix a typo.
2010-01-05 Damien Lefortier <dam@lrde.epita.fr> 2010-01-05 Damien Lefortier <dam@lrde.epita.fr>
Merge eltl2tgba.cc into ltl2tgba.cc. Merge eltl2tgba.cc into ltl2tgba.cc.
@ -7,7 +13,7 @@
* src/tgbatest/ltl2tgba.cc: New option: -xltl to translate an * src/tgbatest/ltl2tgba.cc: New option: -xltl to translate an
extended LTL instead of an LTL, a feature previously offered by extended LTL instead of an LTL, a feature previously offered by
eltl2tgba.cc. Also: -R3b to use delete_unaccepting_scc. eltl2tgba.cc. Also: -R3b to use delete_unaccepting_scc.
* src/tgbatest/spotlbtt.test: Adjust. * src/tgbatest/spotlbtt.test, src/tgbatest/eltl2tgba.test: Adjust.
2009-11-10 Damien Lefortier <dam@lrde.epita.fr> 2009-11-10 Damien Lefortier <dam@lrde.epita.fr>

View file

@ -100,8 +100,8 @@ eol \n|\r|\n\r|\r\n
<INITIAL>"%" BEGIN(formula); <INITIAL>"%" BEGIN(formula);
<INITIAL>"=" return token::EQ; <INITIAL>"=" return token::EQ;
<IINTIAL>"accept" return token::ACC; <INITIAL>"accept" return token::ACC;
<IINTIAL>"finish" return token::FIN; <INITIAL>"finish" return token::FIN;
<INITIAL>[tT][rR][uU][eE] { <INITIAL>[tT][rR][uU][eE] {
return token::CONST_TRUE; return token::CONST_TRUE;