From d9214248913e205f81ffe221a351f85c92f486bd Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 22 Aug 2022 13:00:36 +0200 Subject: [PATCH] Remove probably debugging code in reb-fontify-string-re * lisp/emacs-lisp/re-builder.el (reb-fontify-string-re): Remove code that looks like left-over debugging code. This fixes a compilation warning. --- lisp/emacs-lisp/re-builder.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el index 4b5363d8f60..e6e8bb202da 100644 --- a/lisp/emacs-lisp/re-builder.el +++ b/lisp/emacs-lisp/re-builder.el @@ -738,8 +738,7 @@ If SUBEXP is non-nil mark only the corresponding sub-expressions." (let ((face (get-text-property (1- (point)) 'face))) (when (or (and (listp face) (memq 'font-lock-string-face face)) - (eq 'font-lock-string-face face) - t) + (eq 'font-lock-string-face face)) (throw 'found t)))))))) (defface reb-regexp-grouping-backslash -- 2.39.5