branch: elpa/undo-fu
commit c2be4ae43e67b5e01dbe4a4cdc655d4a70bf77b1
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Cleanup: blank lines
---
undo-fu.el | 4 ----
1 file changed, 4 deletions(-)
diff --git a/undo-fu.el b/undo-fu.el
index 0cfa15486f..a8bf1421b7 100644
--- a/undo-fu.el
+++ b/undo-fu.el
@@ -89,7 +89,6 @@ causing undo-fu to work with reduced functionality when a
selection exists."
(setq undo-fu--checkpoint-is-blocking nil)
(undo-fu--checkpoint-unset))
-
(defmacro undo-fu--with-message-suffix (suffix &rest body)
"Add text after the message output.
Argument SUFFIX is the text to add at the end of the message.
@@ -105,7 +104,6 @@ Optional argument BODY runs with the message suffix."
(apply ,message-orig (append (list (concat arg "%s")) args (list
,suffix))))))
,@body)))
-
(defun undo-fu--next-step (list)
"Get the next undo step in the list.
@@ -116,7 +114,6 @@ Argument LIST compatible list `buffer-undo-list'."
(setq list (cdr list)))
list)
-
(defun undo-fu--count-step-to-other (list list-to-find count-limit)
"Count the number of steps to an item in the undo list.
@@ -131,7 +128,6 @@ Returns the number of steps to reach this list or
COUNT-LIMIT."
(setq count (1+ count)))
count))
-
(defun undo-fu--count-redo-available (list-to-find count-limit was-undo)
"Count the number of redo steps until a previously stored step.