summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnosis.el20
1 files changed, 9 insertions, 11 deletions
diff --git a/gnosis.el b/gnosis.el
index 451eeca..bb95ff0 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -107,17 +107,15 @@ Example:
(defun gnosis--ask-input (prompt)
"PROMPT user for input until `q' is given.
-
- The user is prompted to provide input for the 'PROMPT' message, and
- the returns the list of inputs in reverse order."
- (let ((input-list nil)
- (input ""))
- (while (not (string= input "q"))
- (setq input (read-string (concat prompt " (q for quit): ")))
- (push input input-list))
- (when (string= (car input-list) "q")
- (pop input-list))
- (nreverse input-list)))
+
+The user is prompted to provide input for the 'PROMPT' message, and
+the returns the list of inputs in reverse order."
+ (let ((input nil))
+ (while (not (equal (car input) "q"))
+ (push (read-string (concat prompt " (q for quit): ")) input))
+ (when (equal (car input) "q")
+ (pop input))
+ (reverse input)))
(defun gnosis-add-deck (name)
"Create deck with NAME."