fix missing commit for syntax_erro

This commit is contained in:
Vitor Santos Costa 2010-02-26 13:30:16 +00:00
parent 4355a94793
commit d7c74d8888
4 changed files with 5 additions and 0 deletions

View File

@ -396,6 +396,7 @@
FunctorStreamEOS = Yap_MkFunctor(AtomEndOfStream,1);
FunctorStreamPos = Yap_MkFunctor(AtomStreamPos,5);
FunctorSyntaxError = Yap_MkFunctor(AtomSyntaxError,7);
FunctorShortSyntaxError = Yap_MkFunctor(AtomSyntaxError,1);
FunctorThreadRun = Yap_MkFunctor(AtomTopThreadGoal,2);
FunctorThrow = Yap_MkFunctor(AtomThrow,1);
FunctorTimeoutError = Yap_MkFunctor(AtomTimeoutError,2);

View File

@ -396,6 +396,7 @@
FunctorStreamEOS = FuncAdjust(FunctorStreamEOS);
FunctorStreamPos = FuncAdjust(FunctorStreamPos);
FunctorSyntaxError = FuncAdjust(FunctorSyntaxError);
FunctorShortSyntaxError = FuncAdjust(FunctorShortSyntaxError);
FunctorThreadRun = FuncAdjust(FunctorThreadRun);
FunctorThrow = FuncAdjust(FunctorThrow);
FunctorTimeoutError = FuncAdjust(FunctorTimeoutError);

View File

@ -794,6 +794,8 @@
#define FunctorStreamPos Yap_heap_regs->FunctorStreamPos_
Functor FunctorSyntaxError_;
#define FunctorSyntaxError Yap_heap_regs->FunctorSyntaxError_
Functor FunctorShortSyntaxError_;
#define FunctorShortSyntaxError Yap_heap_regs->FunctorShortSyntaxError_
Functor FunctorThreadRun_;
#define FunctorThreadRun Yap_heap_regs->FunctorThreadRun_
Functor FunctorThrow_;

View File

@ -405,6 +405,7 @@ F Stream Stream 1
F StreamEOS EndOfStream 1
F StreamPos StreamPos 5
F SyntaxError SyntaxError 7
F ShortSyntaxError SyntaxError 1
F ThreadRun TopThreadGoal 2
F Throw Throw 1
F TimeoutError TimeoutError 2