Eli Zaretskii schrieb am Sa., 6. Jan. 2018 um 16:56 Uhr: > > From: Philipp > > Date: Sat, 06 Jan 2018 12:31:51 +0100 > > > > When passing a byte that would start a multibyte sequence, > > `call-interactively` uses STRING_CHAR without checking whether the > > entire multibyte sequence is actually part of the string. For example: > > > > $ emacs -batch -nw -Q -eval '(call-interactively (lambda () (interactive > "\xFF")))' > > Invalid control letter ‘𿯾’ (#o775776, #x3fbfe) in interactive calling > string > > Thanks for catching this. Does the patch below fix this? > > Yes, with that patch Valgrind doesn't find any errors any more.