]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix regexp bugs
authorMattias Engdegård <mattiase@acm.org>
Sat, 13 May 2023 15:03:20 +0000 (17:03 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sat, 13 May 2023 15:41:40 +0000 (17:41 +0200)
* lisp/progmodes/idlwave.el (idlwave-make-tags):
* lisp/obsolete/mantemp.el (mantemp-insert-cxx-syntax):
Repair obviously over-escaped control characters.

lisp/obsolete/mantemp.el
lisp/progmodes/idlwave.el

index 5349ec32cab4d29f080d147d13abd968c12a53f5..9fd6c91cc4ebd19c434353733a7654ba419c6b8a 100644 (file)
@@ -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))
index 0b5ed93068aba682cfdf337d3e19ca5cde4982e7..cafd7b95da7d73bb56b9e49bfaf44cf54c32bfa8 100644 (file)
@@ -3891,7 +3891,7 @@ you specify /."
            (while (and item)
              ;;
              ;; Call etags
-             (if (not (string-match "^[ \\t]*$" item))
+             (if (not (string-match "^[ \t]*$" item))
                  (progn
                    (message "%s" (concat "Tagging " item "..."))
                    (setq errbuf (get-buffer-create "*idltags-error*"))