1
0
Fork 0

Remove (interactive) from private functions

This commit is contained in:
Bram Schoenmakers 2023-06-11 22:18:21 +02:00
parent a872338a7d
commit d2c78de374

View file

@ -123,7 +123,6 @@ is added as-is, otherwise it's wrapped in a lambda performing an
(defun persist-state--enable ()
"Start saving the Emacs state at the configured interval."
(interactive)
(persist-state--enable-packages)
;; only start the timer once
@ -135,7 +134,6 @@ is added as-is, otherwise it's wrapped in a lambda performing an
(defun persist-state--disable ()
"Stop saving the Emacs state."
(interactive)
(when (timerp persist-state--save-state-timer)
(cancel-timer persist-state--save-state-timer)))