Skip to content

Commit

Permalink
fix: fix obsolete symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
DCsunset committed Mar 30, 2024
1 parent 948bc4c commit aef559f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modaled.el
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ If it's not set for some major modes, their default state will be used instead."
(defvar modaled-main-state-fn
nil
"A function to get main modaled state, used by `modaled-set-main-state'.")
(make-obsolete-variable modaled-main-state-alist modaled-main-state-fn "0.8.3")
(make-obsolete-variable 'modaled-main-state-alist 'modaled-main-state-fn "0.8.3")

;;;###autoload
(defun modaled-get-main-state ()
Expand Down Expand Up @@ -120,7 +120,7 @@ If it's not set for some major modes, their default state will be used instead."
nil
"Default modaled state.
Used when the major mode is enabled and by `modaled-set-default-state'.")
(make-obsolete-variable modaled-default-state modaled-init-state-fn "0.8.3")
(make-obsolete-variable 'modaled-default-state 'modaled-init-state-fn "0.8.3")

;;;###autoload
(defun modaled-set-default-state ()
Expand Down

0 comments on commit aef559f

Please sign in to comment.