GNU bug report logs - #39094
27.0.50; ; [PATCH] * makefile-edit.el: regexp-quote the param in makefile-move-to-macro to avoid error message

Previous Next

Package: emacs;

Reported by: <lin.sun <at> zoom.us>

Date: Sun, 12 Jan 2020 08:07:01 UTC

Severity: normal

Tags: patch

Merged with 38014, 38416

Found in versions 26.3.50, 27.0.50

Done: Paul Eggert <eggert <at> cs.ucla.edu>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Paul Eggert <eggert <at> cs.ucla.edu>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#38014: closed (26.3.50; [PATCH] * makefile-edit.el:
 regexp-quote the param in makefile-move-to-macro to avoid error message)
Date: Fri, 17 Jan 2020 00:13:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Thu, 16 Jan 2020 16:12:01 -0800
with message-id <25c4e204-0465-5e7a-4183-8e5a23989b85 <at> cs.ucla.edu>
and subject line regexp-quote the param in makefile-move-to-macro to avoid error message
has caused the debbugs.gnu.org bug report #39094,
regarding 26.3.50; [PATCH] * makefile-edit.el: regexp-quote the param in makefile-move-to-macro to avoid error message
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
39094: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39094
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: <lin.sun <at> zoom.us>
To: <bug-gnu-emacs <at> gnu.org>
Subject: 26.3.50; [PATCH] * makefile-edit.el: regexp-quote the param in
 makefile-move-to-macro to avoid error message
Date: Fri, 1 Nov 2019 10:59:44 +0800
[PATCH] * makefile-edit.el: regexp-quote the param in
makefile-move-to-macro.

Fix the error message from `makefile-move-to-macro' when there is '$'
or '\\' in param for re-search-forward, with `(global-ede-mode t)' and
`(semantic-mode t)'. Enable ede and semantic mode, then open a
Makefile.am in which has line 'AM_LIBTMP_LIBS:=$(shell X \--libs)'
will trigger this issue.
---
 lisp/cedet/ede/makefile-edit.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/cedet/ede/makefile-edit.el
b/lisp/cedet/ede/makefile-edit.el
index 7d8a44b..add1675 100644
--- a/lisp/cedet/ede/makefile-edit.el
+++ b/lisp/cedet/ede/makefile-edit.el
@@ -78,7 +78,7 @@ makefile-move-to-macro
 If NEXT is non-nil, move to the next occurrence of MACRO."
   (let ((oldpt (point)))
     (when (not next) (goto-char (point-min)))
-    (if (re-search-forward (concat "^\\s-*" macro "\\s-*[+:?]?=") nil t)
+    (if (re-search-forward (concat "^\\s-*" (regexp-quote macro)
"\\s-*[+:?]?=") nil t)
        t
       (goto-char oldpt)
       nil)))
--
2.2.0




[Message part 3 (message/rfc822, inline)]
From: Paul Eggert <eggert <at> cs.ucla.edu>
To: Lin Sun <lin.sun <at> zoom.us>
Cc: 39094-done <at> debbugs.gnu.org
Subject: regexp-quote the param in makefile-move-to-macro to avoid error
 message
Date: Thu, 16 Jan 2020 16:12:01 -0800
Thanks for reporting that bug. I installed your patch into the master 
branch.


This bug report was last modified 5 years and 119 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.