branch: externals/bnf-mode commit 26621666df8101e34ab307a0f7927d9749b451a8 Author: Serghei Iakovlev <sadhook...@gmail.com> Commit: Serghei Iakovlev <sadhook...@gmail.com>
Fix typo --- bnf-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bnf-mode.el b/bnf-mode.el index 2398868..0d24942 100644 --- a/bnf-mode.el +++ b/bnf-mode.el @@ -99,7 +99,7 @@ semicolon only (\";\")." `((bnf-rule-name . ,(rx (and (1+ (or alnum digit)) (0+ (or alnum digit - (in "!\"#$%&'()*+,-./:;=?@[\\]^_`{|}~") + (in "!\"#$%&'()*+,-./:;=?@[\]^_`{|}~") (in " \t")))))) "Additional special sexps for `bnf-rx'.")) @@ -120,7 +120,7 @@ See `rx' documentation for more information about REGEXPS param." (rx-to-string (cond ((null sexps) (error "No regexp")) ((cdr sexps) `(and ,@sexps)) (t (car sexps))) - t)))))) + t)))) ;;; Font Locking