branch: externals/agitate
commit 16a2ea1cfe0df5600205b8a48e98da339ecf8ed9
Author: Protesilaos Stavrou <i...@protesilaos.com>
Commit: Protesilaos Stavrou <i...@protesilaos.com>

    Simplify agitate-diff-refine-cycle messages
---
 agitate.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/agitate.el b/agitate.el
index bc92483cb3..61350f03ab 100644
--- a/agitate.el
+++ b/agitate.el
@@ -63,17 +63,17 @@ fontification."
        (font-lock-flush)
        (goto-char point)
        (setq agitate--refine-diff-state 'all)
-       (message "Diff refine %s" (propertize "all" 'face 'success)))
+       (message "Diff refine ALL"))
       ('all
        (revert-buffer)
        (goto-char point)
        (recenter)
        (setq agitate--refine-diff-state nil)
-       (message "Diff refine %s" (propertize "none" 'face 'success)))
+       (message "Diff refine NONE"))
       (_
        (diff-refine-hunk)
        (setq agitate--refine-diff-state 'current)
-       (message "Diff refine %s" (propertize "current" 'face 'success))))))
+       (message "Diff refine CURRENT")))))
 
 ;;;###autoload
 (defun agitate-diff-buffer-or-file ()

Reply via email to