Hi Jan,
Wanted to inform you of odd behaviour (bug) with ?- expects_dialect(sicstus).
on current master where atoms are getting unquoted.
Is this merely my local machine or are you or others reproducing this bug?
Welcome to SWI-Prolog (threaded, 64 bits, version 8.3.27-27-g9cf6502af)
SWI-Prolog comes with ABSOLUTELY NO WARRANTY. This is free software.
Please run ?- license. for legal details.
For online help and background, visit https://www.swi-prolog.org
For built-in help, use ?- help(Topic). or ?- apropos(Word).
1 ?- print('A').
'A'
true.
2 ?- expects_dialect(sicstus).
true.
3 ?- print('A').
A
true.
4 ?- expects_dialect(swi).
true.
5 ?- print('A').
A
true.
6 ?-
That I am not having this problem with the PPA devel version
Welcome to SWI-Prolog (threaded, 64 bits, version 8.2.4)
SWI-Prolog comes with ABSOLUTELY NO WARRANTY. This is free software.
Please run ?- license. for legal details.
For online help and background, visit https://www.swi-prolog.org
For built-in help, use ?- help(Topic). or ?- apropos(Word).
?- print('A').
'A'
true.
?- expects_dialect(sicstus).
true.
?- print('A').
'A'
true.
?- expects_dialect(swi).
true.
?- print('A').
'A'
true.