We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 681efc1 commit e6b5aa1Copy full SHA for e6b5aa1
2 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
+2025-07-19 Tamas Papp <tkpapp@gmail.com>
2
+
3
# Unreleased
4
5
+- protect against missing basedir
6
7
# 1.3.0
8
9
- allow vterm
julia-repl.el
@@ -459,7 +459,8 @@ prevent further attempts."
459
(unless (plist-member (cddr executable-record) :basedir)
460
(let* ((executable-path (julia-repl--executable-path executable-record))
461
(basedir (julia-repl--capture-basedir executable-path)))
462
- (nconc executable-record `(:basedir ,basedir))
+ (when basedir
463
+ (nconc executable-record `(:basedir ,basedir)))
464
(unless basedir
465
(warn "could not capture basedir for Julia executable %s"
466
executable-path)))))
0 commit comments