branch: externals/ergoemacs-mode
commit 8747314c3a2872b0e9ce00f91c2d8389079ff836
Merge: 187b07d de96ab4
Author: Matthew Fidler <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #509 from Esgariot/fix/undo-fu-redo
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'"))))