emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 733f30b 2/4: Tweak messaging in re-builder


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 733f30b 2/4: Tweak messaging in re-builder
Date: Mon, 8 Jul 2019 21:44:23 -0400 (EDT)

branch: master
commit 733f30b4cb3ab3dda8a4a59bd9cb224bb01048de
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Tweak messaging in re-builder
    
    * lisp/emacs-lisp/re-builder.el (reb-copy): Say what we copied to
    the kill ring.
---
 lisp/emacs-lisp/re-builder.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el
index cc432e7..961d26a 100644
--- a/lisp/emacs-lisp/re-builder.el
+++ b/lisp/emacs-lisp/re-builder.el
@@ -455,7 +455,7 @@ matching parts of the target buffer will be highlighted."
     (setq re (substring re 1 (1- (length re))))
     (setq re (replace-regexp-in-string "\n" "\\n" re nil t))
     (kill-new re)
-    (message "Regexp copied to kill-ring")))
+    (message "Copied regexp `%s' to kill-ring" re)))
 
 ;; The subexpression mode is not electric because the number of
 ;; matches should be seen rather than a prompt.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]