emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: elisp--local-variables triggers an error on special input


From: Gregory Heytings
Subject: Re: elisp--local-variables triggers an error on special input
Date: Tue, 01 Dec 2020 14:42:33 +0000
User-agent: Alpine 2.22 (NEB 394 2020-01-19)


You get that error by just eval'ing:

    (insert "((eg \"\C-,\")")

in the *scratch* buffer.

Hm. I don't. The string just gets inserted:

 ((eg "C-,")

(as I'd expected).


You should get an "Invalid modifier in string" error, at least that's what you get with emacs -Q. The \C-, is not valid. ASCII characters 0x00 to 0x3E are not allowed after \C, with the exception of \0x20 (space). That includes the comma, colon, semicolong, digits, ...



reply via email to

[Prev in Thread] Current Thread [Next in Thread]