We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3b183 commit cfea755Copy full SHA for cfea755
cider-util.el
@@ -698,10 +698,8 @@ through a stack of help buffers. Variables `help-back-label' and
698
699
(defun cider-random-words-of-inspiration ()
700
"Select a random entry from `cider-words-of-inspiration'."
701
- ;; FIXME: Consider removing this eval.
702
- (eval (nth (random (length cider-words-of-inspiration))
703
- cider-words-of-inspiration)
704
- t))
+ (nth (random (length cider-words-of-inspiration))
+ cider-words-of-inspiration))
705
706
(defun cider-inspire-me ()
707
"Display a random inspiration message."
0 commit comments