projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03eeab4
)
* lisp/progmodes/cc-langs.el (c-<>-notable-chars-re): Fix wrong '-' in regexp
author
Alan Mackenzie
<acm@muc.de>
Sun, 15 Nov 2020 10:34:54 +0000
(10:34 +0000)
committer
Alan Mackenzie
<acm@muc.de>
Sun, 15 Nov 2020 10:34:54 +0000
(10:34 +0000)
lisp/progmodes/cc-langs.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/cc-langs.el
b/lisp/progmodes/cc-langs.el
index 0a7f4565c0efe80ae0de6ea23b6906ae9b9bbd14..56c3a4889b2759eb89227d289ed489746a1ce031 100644
(file)
--- a/
lisp/progmodes/cc-langs.el
+++ b/
lisp/progmodes/cc-langs.el
@@
-3643,7
+3643,7
@@
When \"(\" is present, that defun will attempt to parse a
parenthesized expression inside the template. When \")\" is
present it will treat an unbalanced closing paren as a sign of
the invalidity of the putative template construct."
- t "[<;{},|+&
->)
]"
+ t "[<;{},|+&
>)-
]"
c++ "[<;{},>()]")
(c-lang-defvar c-<>-notable-chars-re (c-lang-const c-<>-notable-chars-re))