Starting with the Intel only build of 9.2.0 for MacOS, typing an extended character using the Option- key causes an immediate exit from swipl running from the MacOS terminal.
Intel only build:
$ /Applications/SWI-Prolog9.2.0.app/Contents/MacOS/swipl
Welcome to SWI-Prolog (threaded, 64 bits, version 9.2.0)
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).
?- X=`
% halt
$ ?
so immediate exit on keystroke. This seems to happen on any “Option-” keystroke I’ve tried.
On “fat” binary build (same release):
$ /Applications/SWI-Prolog9.2.0fat.app/Contents/MacOS/swipl
Welcome to SWI-Prolog (threaded, 64 bits, version 9.2.0)
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).
?- X = ç.
X = ç.
?- X=`ç`.
X = [231].
?- halt.
$
Can anybody verify?