projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9711c8c
)
Avoid raw control characters in grm-wy-boot.el
author
Stefan Kangas
<stefankangas@gmail.com>
Fri, 18 Nov 2022 10:59:07 +0000
(11:59 +0100)
committer
Stefan Kangas
<stefankangas@gmail.com>
Fri, 18 Nov 2022 10:59:07 +0000
(11:59 +0100)
* lisp/cedet/semantic/grm-wy-boot.el
(semantic-grammar-wy--parse-table): Don't use raw control characters.
lisp/cedet/semantic/grm-wy-boot.el
patch
|
blob
|
history
diff --git
a/lisp/cedet/semantic/grm-wy-boot.el
b/lisp/cedet/semantic/grm-wy-boot.el
index 376fab89c23506172f86ff86a2e116718f41acf4..7fff36a3d0259549831a732c59cb2e10d555559f 100644
(file)
--- a/
lisp/cedet/semantic/grm-wy-boot.el
+++ b/
lisp/cedet/semantic/grm-wy-boot.el
@@
-396,12
+396,12
@@
(let
((s $1))
(if
-
(string-match "^{[
\r
\n
]*" s)
+
(string-match "^{[\^M\n
]*" s)
(setq s
(substring s
(match-end 0))))
(if
-
(string-match "[
\r
\n
]*}$" s)
+
(string-match "[\^M\n
]*}$" s)
(setq s
(substring s 0
(match-beginning 0))))