From c8bb401155a8a2c5718ffd3667c516f8e178a1b5 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Sun, 6 Sep 2020 20:52:37 +0530 Subject: [PATCH] run-at-time - mention args in docstring checkdoc's warning about it was getting annoying. --- chronometrist-goal.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chronometrist-goal.el b/chronometrist-goal.el index 1683d49..26dda2c 100644 --- a/chronometrist-goal.el +++ b/chronometrist-goal.el @@ -46,7 +46,8 @@ like to spend GOAL time on any one of those tasks." (repeat :inline t string)))) (defun chronometrist-goal-run-at-time (time repeat function &rest args) - "Like `run-at-time', but append timers to `chronometrist-goal--timers-list'." + "Like `run-at-time', but append timers to `chronometrist-goal--timers-list'. +TIME, REPEAT, FUNCTION, and ARGS are as used in `run-at-time'." (->> (apply #'run-at-time time repeat function args) (list) (append chronometrist-goal--timers-list)