Similarly to the previous fix for 'sweeprolog-pack-install', this
makes 'sweeprolog-set-prolog-flag' actually report its result, instead
of reporting failure even when successful.
* sweep.pl (sweep_set_prolog_flag/2): Bind the output argument to
non-nil on success.
term_string(Value0, Value)),
Flags).
-sweep_set_prolog_flag([Flag0|Value0], []) :-
+sweep_set_prolog_flag([Flag0|Value0], true) :-
atom_string(Flag, Flag0),
term_string(Value, Value0),
set_prolog_flag(Flag, Value).