summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2020-07-02 18:14:30 +0000
committerAlan Mackenzie <acm@muc.de>2020-07-02 18:14:30 +0000
commit5d1bac0ac951e25d0b0b39a9919f13053162d5df (patch)
tree9c2c8f485d29368550f5c4236f5e443c22f91b2a /lisp
parent256bb844b0a7dc22a8d11be89cb24a94f5772cbf (diff)
downloademacs-5d1bac0ac951e25d0b0b39a9919f13053162d5df.tar.gz
emacs-5d1bac0ac951e25d0b0b39a9919f13053162d5df.tar.bz2
emacs-5d1bac0ac951e25d0b0b39a9919f13053162d5df.zip
* lisp/progmodes/cc-mode.el (c-or-c++-mode--regexp): Change WS to [ \t] in it
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/cc-mode.el2
1 files changed, 1 insertions, 1 deletions
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 "\\(?:"