Error in BNF generator
Status: Alpha
Brought to you by:
flannelboy
in the file csde-csharp-grammar.el, ending comments are
generated with only 1 '\'. The regular expression causes an error
during my .emacs load sequence. Changing to \\ gets past this
issue.
old:
(setq document-comment-end
"^[\s]*[\w]+")
new:
(setq document-comment-end
"^[\\s]*[\\w]+")
Logged In: YES
user_id=159914
Finally - someone with GNU emacs posts the solution to this
problem! I have 100s of emails on this one. I'll make the fix
and post a new version. Thanks.