branch: elpa/with-simulated-input
commit 41f4547339927aec16ede71d1bff7837f5ff49ed
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>
Clarify a comment
---
with-simulated-input.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/with-simulated-input.el b/with-simulated-input.el
index 32c0375511..8d13038d9b 100644
--- a/with-simulated-input.el
+++ b/with-simulated-input.el
@@ -383,9 +383,9 @@ in a future release.)"
(t
(error "KEYS must be a string, character, or list, not %s: %s = %S"
(type-of ,keys) ',keys ,keys))))
- ;; If KEYS is a list whose first element is not `quote', then it is
- ;; a function call, whose return value will be used as the value of
- ;; KEYS. This is *definitely* deprecated.
+ ;; If KEYS is a list whose first element is a function other than
+ ;; `quote', then it is a function call, whose return value will be
+ ;; used as the value of KEYS. This is *definitely* deprecated.
((and (listp keys)
(not (eq (car keys) 'quote))
(or (functionp (car keys))