branch: elpa/cider
commit 6426b9174f282e9c0400319b4c7185d8b63692b5
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Use lexical scoping
---
 cider-util.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/cider-util.el b/cider-util.el
index 083181ab0d..2599d5d652 100644
--- a/cider-util.el
+++ b/cider-util.el
@@ -692,8 +692,10 @@ through a stack of help buffers.  Variables 
`help-back-label' and
 
 (defun cider-random-words-of-inspiration ()
   "Select a random entry from `cider-words-of-inspiration'."
+  ;; FIXME: Consider removing this eval.
   (eval (nth (random (length cider-words-of-inspiration))
-             cider-words-of-inspiration)))
+             cider-words-of-inspiration)
+        t))
 
 (defvar cider-tips
   '("Press <\\[cider-connect]> to connect to a running nREPL server."

Reply via email to