fix missing commit for syntax_erro
This commit is contained in:
parent
4355a94793
commit
d7c74d8888
@ -396,6 +396,7 @@
|
|||||||
FunctorStreamEOS = Yap_MkFunctor(AtomEndOfStream,1);
|
FunctorStreamEOS = Yap_MkFunctor(AtomEndOfStream,1);
|
||||||
FunctorStreamPos = Yap_MkFunctor(AtomStreamPos,5);
|
FunctorStreamPos = Yap_MkFunctor(AtomStreamPos,5);
|
||||||
FunctorSyntaxError = Yap_MkFunctor(AtomSyntaxError,7);
|
FunctorSyntaxError = Yap_MkFunctor(AtomSyntaxError,7);
|
||||||
|
FunctorShortSyntaxError = Yap_MkFunctor(AtomSyntaxError,1);
|
||||||
FunctorThreadRun = Yap_MkFunctor(AtomTopThreadGoal,2);
|
FunctorThreadRun = Yap_MkFunctor(AtomTopThreadGoal,2);
|
||||||
FunctorThrow = Yap_MkFunctor(AtomThrow,1);
|
FunctorThrow = Yap_MkFunctor(AtomThrow,1);
|
||||||
FunctorTimeoutError = Yap_MkFunctor(AtomTimeoutError,2);
|
FunctorTimeoutError = Yap_MkFunctor(AtomTimeoutError,2);
|
||||||
|
@ -396,6 +396,7 @@
|
|||||||
FunctorStreamEOS = FuncAdjust(FunctorStreamEOS);
|
FunctorStreamEOS = FuncAdjust(FunctorStreamEOS);
|
||||||
FunctorStreamPos = FuncAdjust(FunctorStreamPos);
|
FunctorStreamPos = FuncAdjust(FunctorStreamPos);
|
||||||
FunctorSyntaxError = FuncAdjust(FunctorSyntaxError);
|
FunctorSyntaxError = FuncAdjust(FunctorSyntaxError);
|
||||||
|
FunctorShortSyntaxError = FuncAdjust(FunctorShortSyntaxError);
|
||||||
FunctorThreadRun = FuncAdjust(FunctorThreadRun);
|
FunctorThreadRun = FuncAdjust(FunctorThreadRun);
|
||||||
FunctorThrow = FuncAdjust(FunctorThrow);
|
FunctorThrow = FuncAdjust(FunctorThrow);
|
||||||
FunctorTimeoutError = FuncAdjust(FunctorTimeoutError);
|
FunctorTimeoutError = FuncAdjust(FunctorTimeoutError);
|
||||||
|
@ -794,6 +794,8 @@
|
|||||||
#define FunctorStreamPos Yap_heap_regs->FunctorStreamPos_
|
#define FunctorStreamPos Yap_heap_regs->FunctorStreamPos_
|
||||||
Functor FunctorSyntaxError_;
|
Functor FunctorSyntaxError_;
|
||||||
#define FunctorSyntaxError Yap_heap_regs->FunctorSyntaxError_
|
#define FunctorSyntaxError Yap_heap_regs->FunctorSyntaxError_
|
||||||
|
Functor FunctorShortSyntaxError_;
|
||||||
|
#define FunctorShortSyntaxError Yap_heap_regs->FunctorShortSyntaxError_
|
||||||
Functor FunctorThreadRun_;
|
Functor FunctorThreadRun_;
|
||||||
#define FunctorThreadRun Yap_heap_regs->FunctorThreadRun_
|
#define FunctorThreadRun Yap_heap_regs->FunctorThreadRun_
|
||||||
Functor FunctorThrow_;
|
Functor FunctorThrow_;
|
||||||
|
@ -405,6 +405,7 @@ F Stream Stream 1
|
|||||||
F StreamEOS EndOfStream 1
|
F StreamEOS EndOfStream 1
|
||||||
F StreamPos StreamPos 5
|
F StreamPos StreamPos 5
|
||||||
F SyntaxError SyntaxError 7
|
F SyntaxError SyntaxError 7
|
||||||
|
F ShortSyntaxError SyntaxError 1
|
||||||
F ThreadRun TopThreadGoal 2
|
F ThreadRun TopThreadGoal 2
|
||||||
F Throw Throw 1
|
F Throw Throw 1
|
||||||
F TimeoutError TimeoutError 2
|
F TimeoutError TimeoutError 2
|
||||||
|
Reference in New Issue
Block a user