branch: externals/ergoemacs-mode
commit de96ab4e7945e8cd29bf70c81f4c5b8ac3f0ece5
Author: Esgariot <[email protected]>
Commit: Esgariot <[email protected]>
fix: undo-fu redo.
---
ergoemacs-functions.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ergoemacs-functions.el b/ergoemacs-functions.el
index 5c6b815..1e4067c 100644
--- a/ergoemacs-functions.el
+++ b/ergoemacs-functions.el
@@ -327,7 +327,7 @@ KEY3 is the optional third key in the sequence."
(interactive)
(cond
((fboundp 'undo-fu-only-redo)
- (call-interactively ''undo-fu-only-redo))
+ (call-interactively 'undo-fu-only-redo))
((fboundp 'undo-redo) ; should be in emacs 28
(call-interactively 'undo-redo))
(t (message "Redo support not present. Try `undo-fu'"))))