Skip to content

Commit 06678ed

Browse files
authored
Merge pull request #39 from tpapp/tp/fix-assert
explicitly require cl-lib, fix assert form
2 parents 4229581 + e830082 commit 06678ed

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

julia-repl.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141

4242
(require 'term)
4343
(require 'subr-x)
44+
(require 'cl-lib)
4445

4546

4647
;; customizations
@@ -104,7 +105,7 @@ first entry is the default.")
104105
(defun julia-repl--default-executable-key ()
105106
"Return the default executable key."
106107
(let ((key (caar julia-repl-executable-records)))
107-
(cl-assert key "Could not find any key in JULIA-REPL-EXECUTABLE-RECORDS.")
108+
(cl-assert key nil "Could not find any key in JULIA-REPL-EXECUTABLE-RECORDS.")
108109
key))
109110

110111
(defvar julia-repl-inferior-buffer-name-suffix nil

0 commit comments

Comments
 (0)