summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-org.el b/evil-org.el
index 22bd783..fe42801 100644
--- a/evil-org.el
+++ b/evil-org.el
@@ -123,7 +123,7 @@ before calling `evil-org-set-keytheme'."
"Go to end of line and call provided function.
FUN function callback
Optional argument ARGUMENTS arguments to pass to FUN."
- (obsolete 'evil-org-define-bol-command "0.9.4")
+ (declare (obsolete 'evil-org-define-eol-command "0.9.4"))
(end-of-visible-line)
(apply fun arguments)
(evil-insert nil))
@@ -132,7 +132,7 @@ Optional argument ARGUMENTS arguments to pass to FUN."
"Go to beginning of line and call provided function.
FUN function callback
Optional argument ARGUMENTS arguments to pass to FUN."
- (obsolete 'evil-org-define-bol-command "0.9.4")
+ (declare (obsolete 'evil-org-define-bol-command "0.9.4"))
(beginning-of-line)
(apply fun arguments)
(evil-insert nil))