Fix a longstanding bug reported by Guillaume Sadegh.
* src/eltlparse/eltlscan.ll: Fix a typo.
This commit is contained in:
parent
830e482836
commit
88df8c0a1d
2 changed files with 9 additions and 3 deletions
|
|
@ -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>
|
||||
|
||||
Merge eltl2tgba.cc into ltl2tgba.cc.
|
||||
|
|
@ -7,7 +13,7 @@
|
|||
* src/tgbatest/ltl2tgba.cc: New option: -xltl to translate an
|
||||
extended LTL instead of an LTL, a feature previously offered by
|
||||
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>
|
||||
|
||||
|
|
|
|||
|
|
@ -100,8 +100,8 @@ eol \n|\r|\n\r|\r\n
|
|||
<INITIAL>"%" BEGIN(formula);
|
||||
|
||||
<INITIAL>"=" return token::EQ;
|
||||
<IINTIAL>"accept" return token::ACC;
|
||||
<IINTIAL>"finish" return token::FIN;
|
||||
<INITIAL>"accept" return token::ACC;
|
||||
<INITIAL>"finish" return token::FIN;
|
||||
|
||||
<INITIAL>[tT][rR][uU][eE] {
|
||||
return token::CONST_TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue