Skip to content

Commit

Permalink
Merge pull request #104 from kisaragi-hiu/declare
Browse files Browse the repository at this point in the history
Fix incorrect obsolescence declarations
  • Loading branch information
Somelauw committed Oct 1, 2022
2 parents 0d10ff7 + 233f8b7 commit b1f3097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evil-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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))
Expand Down

0 comments on commit b1f3097

Please sign in to comment.