branch: elpa/with-simulated-input
commit 07bdfbe9ab9eab4a04ad02e98b011649a4f4e6a2
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>

    Increment version to 3.0
---
 README.md               | 11 ++++++++---
 with-simulated-input.el |  2 +-
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index b0e9c6928c..0686413f70 100644
--- a/README.md
+++ b/README.md
@@ -36,9 +36,14 @@ enter "world" after entering "hello" via key sequence:
     (read-string "Say hello: ")))
 ```
 
-Note that the return values of any forms in the input list are
-ignored. Only the side effects matter. In this case, the side effect
-of `insert` is to insert "world" into the minibuffer.
+Note 1: The return values of any forms in the input list are ignored.
+Only the side effects matter. In this case, the side effect of
+`insert` is to insert "world" into the minibuffer.
+
+Note 2: Previous versions of `with-simulated-input` attempted to
+evalaute KEYS normally despite being a macro, so a quote was required
+in front of KEYS if it was a list. This is no longer the case as of
+version 3.0.
 
 ## Simulating idleness
 
diff --git a/with-simulated-input.el b/with-simulated-input.el
index a59a5e5784..6ba380a75d 100644
--- a/with-simulated-input.el
+++ b/with-simulated-input.el
@@ -7,7 +7,7 @@
 ;; Author: Ryan C. Thompson <[email protected]>
 ;;    Nikita Bloshchanevich <[email protected]>
 ;; Created: Thu Jul 20 11:56:23 2017 (-0700)
-;; Version: 2.4
+;; Version: 3.0
 ;; Package-Requires: ((emacs "24.4"))
 ;; URL: https://github.com/DarwinAwardWinner/with-simulated-input
 ;; Keywords: lisp, tools, extensions

Reply via email to