branch: elpa/with-simulated-input
commit 02b5d2c77f5f8cdbe9b42591e6fbb1061f9671b9
Author: Nikita Bloshchanevich <[email protected]>
Commit: Nikita Bloshchanevich <[email protected]>
Fix checkdoc warnings
---
with-simulated-input.el | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/with-simulated-input.el b/with-simulated-input.el
index 8af260d445..03abc94f34 100644
--- a/with-simulated-input.el
+++ b/with-simulated-input.el
@@ -82,8 +82,7 @@ modifier combinations, e.g.:
'(\"C-\" \"M-\" \"C-M-\")
for control, meta, or both. KEYS is a string containing all keys
-to check.
-"
+to check."
(declare (advertised-calling-convention (&optional modifiers keys) nil))
(when (stringp modifiers)
(setq modifiers (list modifiers)))
@@ -198,7 +197,10 @@ set to 5 seconds, then 10 seconds the next time, and so
on.")
"Return the faked value while simulating idle time.
While executing `wsi-simulate-idle-time', this advice causes the
-simulated idle time to be returned instead of the real value."
+simulated idle time to be returned instead of the real value.
+
+ORIG-FUN is the original function, passed by `advice-add'; ARGS
+are the arguments given to it."
(if wsi-simulated-idle-time
(when (time-less-p (seconds-to-time 0) wsi-simulated-idle-time)
wsi-simulated-idle-time)