From 5d1bac0ac951e25d0b0b39a9919f13053162d5df Mon Sep 17 00:00:00 2001 From: Alan Mackenzie Date: Thu, 2 Jul 2020 18:14:30 +0000 Subject: [PATCH] * lisp/progmodes/cc-mode.el (c-or-c++-mode--regexp): Change WS to [ \t] in it --- lisp/progmodes/cc-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index bd0efc681eb..92c1ce89b8c 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -2597,7 +2597,7 @@ Key bindings: (defconst c-or-c++-mode--regexp (eval-when-compile - (let ((id "[a-zA-Z_][a-zA-Z0-9_]*") (ws "[ \t\r]+") (ws-maybe "[ \t\r]*") + (let ((id "[a-zA-Z_][a-zA-Z0-9_]*") (ws "[ \t]+") (ws-maybe "[ \t]*") (headers '("string" "string_view" "iostream" "map" "unordered_map" "set" "unordered_set" "vector" "tuple"))) (concat "^" ws-maybe "\\(?:" -- 2.39.5