]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/cc-langs.el (c-<>-notable-chars-re): Fix wrong '-' in regexp
authorAlan Mackenzie <acm@muc.de>
Sun, 15 Nov 2020 10:34:54 +0000 (10:34 +0000)
committerAlan Mackenzie <acm@muc.de>
Sun, 15 Nov 2020 10:34:54 +0000 (10:34 +0000)
lisp/progmodes/cc-langs.el

index 0a7f4565c0efe80ae0de6ea23b6906ae9b9bbd14..56c3a4889b2759eb89227d289ed489746a1ce031 100644 (file)
@@ -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))