finish #214, add needed ambiguity checks if 0 is the final character

This commit is contained in:
Mark Thom
2019-10-27 19:23:35 -06:00
parent 0dcd9e5805
commit e594ade84d
4 changed files with 28 additions and 18 deletions

View File

@@ -28,9 +28,8 @@
'$$compile_batch' :- '$compile_batch'.
'$instruction_match'([Item], []) :-
( atom(Item) ->
( atom(Item) -> !,
( Item == user ->
!,
catch('$$compile_batch', E, '$print_exception_with_check'(E))
; consult(Item)
)