Skip to content

Commit e8b1330

Browse files
committed
Remove an unused variable
1 parent f78f4cd commit e8b1330

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cider-interaction.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1661,8 +1661,7 @@ If invoked with a PREFIX argument, print the result in the current buffer."
16611661
(defun cider-eval-last-sexp-and-replace ()
16621662
"Evaluate the expression preceding point and replace it with its result."
16631663
(interactive)
1664-
(let ((last-sexp (cider-last-sexp))
1665-
(start-pos (cider-last-sexp-start-pos)))
1664+
(let ((last-sexp (cider-last-sexp)))
16661665
;; we have to be sure the evaluation won't result in an error
16671666
(nrepl-sync-request:eval last-sexp)
16681667
;; seems like the sexp is valid, so we can safely kill it

0 commit comments

Comments
 (0)