Windows 7, emacs 29.1
Is there a way to tell emacs to test for a null without entering a null in elisp?
Putting a null anywhere in my elisp produces "Error: End of file during parsing".
Variations of this won't compile:
(if (looking-at "X") ;"X" is a null, i.e. CTRL-@ (CTRL-SHIFT-2).
;I didn't want to insert a null in this post.
(message "%s" "match")
(message "%s" "not match")
)