Skip to content

Commit

Permalink
Changed name of Emacs buffer to *Julia*
Browse files Browse the repository at this point in the history
  • Loading branch information
Elzair committed Mar 5, 2015
1 parent d9c7913 commit b08aede
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contrib/julia-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -3128,10 +3128,10 @@ end"))
"Run an inferior instance of `julia' inside Emacs."
(interactive)
(let ((julia-program julia-program)
(buffer (get-buffer-create "Julia")))
(when (not (comint-check-proc "Julia"))
(apply #'make-comint-in-buffer "Julia" "Julia" julia-program julia-arguments))
(pop-to-buffer-same-window "Julia")
(buffer (get-buffer-create "*Julia*")))
(when (not (comint-check-proc "*Julia*"))
(apply #'make-comint-in-buffer "Julia" "*Julia*" julia-program julia-arguments))
(pop-to-buffer-same-window "*Julia*")
(inferior-julia-mode)))

(defun inferior-julia--initialize ()
Expand Down

0 comments on commit b08aede

Please sign in to comment.