summaryrefslogtreecommitdiff
path: root/lisp/obsolete/mantemp.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2023-05-13 17:03:20 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2023-05-13 17:41:40 +0200
commita7dcc0d55c641d3a16ed64528e726fb297726cbf (patch)
treefe9c2991b7e9a8d7ef94b7e78438cf412934c5e9 /lisp/obsolete/mantemp.el
parent867b104010760c4b7cd700078884cc774a01860a (diff)
Fix regexp bugs
* lisp/progmodes/idlwave.el (idlwave-make-tags): * lisp/obsolete/mantemp.el (mantemp-insert-cxx-syntax): Repair obviously over-escaped control characters.
Diffstat (limited to 'lisp/obsolete/mantemp.el')
-rw-r--r--lisp/obsolete/mantemp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/obsolete/mantemp.el b/lisp/obsolete/mantemp.el
index 5349ec32cab..9fd6c91cc4e 100644
--- a/lisp/obsolete/mantemp.el
+++ b/lisp/obsolete/mantemp.el
@@ -152,7 +152,7 @@ the lines."
(while (re-search-forward "^.+" nil t)
(progn
(beginning-of-line)
- (if (looking-at "struct[\\t ]+\\|class[\\t ]+")
+ (if (looking-at "struct[\t ]+\\|class[\t ]+")
(insert "template ")
(insert "template class "))))
(goto-char (point-min))