]> Repositorios git - scryer-prolog.git/commitdiff
Remove trailing whitespace in toplevel.pl
authorbakaq <[email protected]>
Wed, 2 Oct 2024 00:58:59 +0000 (21:58 -0300)
committerbakaq <[email protected]>
Wed, 2 Oct 2024 00:58:59 +0000 (21:58 -0300)
src/toplevel.pl

index 2bdc41832a3aa9ef24523e20c70da7e4389c0dc9..090d2094751e613211edacaf76a671f3d0564dfe 100644 (file)
@@ -170,8 +170,8 @@ repl :-
 %% Enable op declarations with lists of operands, i.e.,
 %% :- op(900, fy, [$,@]).
 
-user:term_expansion((:- op(Pred, Spec, Ops)), OpResults) :- 
-    ground(Ops), 
+user:term_expansion((:- op(Pred, Spec, Ops)), OpResults) :-
+    ground(Ops),
     Ops = [Op | OtherOps],
     expand_op_list([Op | OtherOps], Pred, Spec, OpResults).
 
@@ -223,7 +223,7 @@ run_query(QueryChars, Callback_3, Options) :-
 % - `final(exception(Exception))`, where `Exception` is the exception thrown
 % - `final(true)`
 % - `final(leaf_answer(Bindings, ResidualGoals, VarNames))`, where:
-%   
+%
 %   - `Bindings` is a list of terms of the form `Var=Term`, where `Var` is a
 %     variable.
 %   - `ResidualGoals` is a list of the residual goals from the query.