Skip to content

Commit 7472317

Browse files
committed
Use cl-assert instead of assert
1 parent 010dfb8 commit 7472317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-repl.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ If USE-CURRENT-INPUT is non-nil, use the current input."
844844
(cond ((cider-history-search-in-progress-p)
845845
cider-repl-history-pattern)
846846
(use-current-input
847-
(assert (<= cider-repl-input-start-mark (point)))
847+
(cl-assert (<= cider-repl-input-start-mark (point)))
848848
(let ((str (cider-repl--current-input t)))
849849
(cond ((string-match-p "^[ \n]*$" str) nil)
850850
(t (concat "^" (regexp-quote str))))))

0 commit comments

Comments
 (0)