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:
parent
9711c8c2b4
commit
7571768c6c
1 changed files with 2 additions and 2 deletions
|
@ -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))))
|
||||
|
|
Loading…
Add table
Reference in a new issue