Avoid raw control characters in grm-wy-boot.el

* lisp/cedet/semantic/grm-wy-boot.el
(semantic-grammar-wy--parse-table): Don't use raw control characters.
This commit is contained in:
Stefan Kangas 2022-11-18 11:59:07 +01:00
parent 9711c8c2b4
commit 7571768c6c

View file

@ -396,12 +396,12 @@
(let
((s $1))
(if
(string-match "^{[ \n ]*" s)
(string-match "^{[\^M\n ]*" s)
(setq s
(substring s
(match-end 0))))
(if
(string-match "[ \n ]*}$" s)
(string-match "[\^M\n ]*}$" s)
(setq s
(substring s 0
(match-beginning 0))))