* lisp/progmodes/cc-langs.el (c-<>-notable-chars-re): Fix wrong '-' in regexp

This commit is contained in:
Alan Mackenzie 2020-11-15 10:34:54 +00:00
parent 03eeab469e
commit 66bcec8838

View file

@ -3643,7 +3643,7 @@ When \"(\" is present, that defun will attempt to parse a
parenthesized expression inside the template. When \")\" is parenthesized expression inside the template. When \")\" is
present it will treat an unbalanced closing paren as a sign of present it will treat an unbalanced closing paren as a sign of
the invalidity of the putative template construct." the invalidity of the putative template construct."
t "[<;{},|+&->)]" t "[<;{},|+&>)-]"
c++ "[<;{},>()]") c++ "[<;{},>()]")
(c-lang-defvar c-<>-notable-chars-re (c-lang-const c-<>-notable-chars-re)) (c-lang-defvar c-<>-notable-chars-re (c-lang-const c-<>-notable-chars-re))