]> Repositorios git - scryer-prolog.git/commitdiff
use consult instead of use_module
authorAdrián Arroyo Calle <[email protected]>
Sun, 22 Aug 2021 09:44:17 +0000 (11:44 +0200)
committerAdrián Arroyo Calle <[email protected]>
Sun, 22 Aug 2021 09:44:17 +0000 (11:44 +0200)
src/toplevel.pl

index aa76317757e9829ff06d530799062ae2a85c4dc6..8ce69ed5e6918f82aae7905a7762cf55fb84bef3 100644 (file)
@@ -17,7 +17,7 @@ load_scryerrc :-
        append(HomeDir, "/.scryerrc", ScryerrcFile),
        (  file_exists(ScryerrcFile) ->
           atom_chars(ScryerrcFileAtom, ScryerrcFile),
-          catch(use_module(ScryerrcFileAtom), E, print_exception(E))
+          catch(consult(ScryerrcFileAtom), E, print_exception(E))
        ;  true
        )
     ;  true
@@ -56,7 +56,7 @@ delegate_task([Arg0|Args], Goals0) :-
     ;   member(Arg0, ["-g", "--goal"]) -> gather_goal(g, Args, Goals0)
     ;   member(Arg0, ["-f"]) -> init_file
     ;   atom_chars(Mod, Arg0),
-        catch(use_module(Mod), E, print_exception(E))
+        catch(consult(Mod), E, print_exception(E))
     ),
     delegate_task(Args, Goals0).