branch: elpa/with-simulated-input
commit c377a673c86cdedd5d48418caf8f1ce621aca767
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>
Prefix unused variables with underscores
This stops the byte-compiler from complaining.
---
with-simulated-input.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/with-simulated-input.el b/with-simulated-input.el
index 6ba380a75d..32c0375511 100644
--- a/with-simulated-input.el
+++ b/with-simulated-input.el
@@ -131,8 +131,8 @@ arguments."
((pred atom) t)
((pred functionp) t)
;; Quoted expressions are constant
- (`(quote ,x) t)
- (`(function ,x) t)))
+ (`(quote ,_x) t)
+ (`(function ,_x) t)))
(defsubst wsi--looks-pure-p (expr)
"Return non-nil if EXPR looks like a pure expression.