Skip to content

Commit

Permalink
Use cl-assert instead of assert.
Browse files Browse the repository at this point in the history
Should fix #38.
  • Loading branch information
tpapp committed Sep 8, 2018
1 parent c68af1c commit 4229581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion julia-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ first entry is the default.")
(defun julia-repl--default-executable-key ()
"Return the default executable key."
(let ((key (caar julia-repl-executable-records)))
(assert key "Could not find any key in JULIA-REPL-EXECUTABLE-RECORDS.")
(cl-assert key "Could not find any key in JULIA-REPL-EXECUTABLE-RECORDS.")
key))

(defvar julia-repl-inferior-buffer-name-suffix nil
Expand Down

0 comments on commit 4229581

Please sign in to comment.