Skip to content

Commit

Permalink
Merge pull request #39 from tpapp/tp/fix-assert
Browse files Browse the repository at this point in the history
explicitly require cl-lib, fix assert form
  • Loading branch information
tpapp authored Sep 10, 2018
2 parents 4229581 + e830082 commit 06678ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion julia-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

(require 'term)
(require 'subr-x)
(require 'cl-lib)


;; customizations
Expand Down Expand Up @@ -104,7 +105,7 @@ first entry is the default.")
(defun julia-repl--default-executable-key ()
"Return the default executable key."
(let ((key (caar julia-repl-executable-records)))
(cl-assert key "Could not find any key in JULIA-REPL-EXECUTABLE-RECORDS.")
(cl-assert key nil "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 06678ed

Please sign in to comment.