On 2025-11-01 11:59:38 +0100, Vincent Lefevre wrote: > Hmm... I forgot that this depends on another config. You also need > to set reverseWrap (very useful in cooked mode). I've tested after > removing my default config: > > $ xterm -k8 -xrm '*VT100.reverseWrap: true' -e 'printf "\x9a\x85\x08"; sleep > 2' > Segmentation fault (core dumped) > $ echo $? > 139
And without needing the -k8 (since control / escape sequences using 128-159 have their ASCII equivalent): $ xterm -xrm '*VT100.reverseWrap: true' -e 'printf "\eZ\n\x08"; sleep 2' Segmentation fault (core dumped) $ echo $? 139 -- Vincent Lefèvre <[email protected]> - Web: <https://www.vinc17.net/> 100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/> Work: CR INRIA - computer arithmetic / Pascaline project (LIP, ENS-Lyon)

