Skip to content

Commit cfea755

Browse files
committed
Remove a redundant eval
1 parent 2d3b183 commit cfea755

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Diff for: cider-util.el

+2-4
Original file line numberDiff line numberDiff line change
@@ -698,10 +698,8 @@ through a stack of help buffers. Variables `help-back-label' and
698698

699699
(defun cider-random-words-of-inspiration ()
700700
"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))
701+
(nth (random (length cider-words-of-inspiration))
702+
cider-words-of-inspiration))
705703

706704
(defun cider-inspire-me ()
707705
"Display a random inspiration message."

0 commit comments

Comments
 (0)