branch: elpa/cider
commit cfea755de682bb91dd59ef7e789d4d2bb170efe1
Author: Bozhidar Batsov <bozhi...@batsov.dev>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Remove a redundant eval
---
 cider-util.el | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/cider-util.el b/cider-util.el
index ece55fc3da..7a0e08f3ac 100644
--- a/cider-util.el
+++ b/cider-util.el
@@ -698,10 +698,8 @@ 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)
-        t))
+  (nth (random (length cider-words-of-inspiration))
+       cider-words-of-inspiration))
 
 (defun cider-inspire-me ()
   "Display a random inspiration message."

Reply via email to