Skip to content

Commit fc6f920

Browse files
committed
Support Maxima which uses ABCL. implemented (wx-cd dir) for this Lisp.
Hopefully correct? I am not a Lisp expert.
1 parent ae49966 commit fc6f920

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- WxMaxima was not responsive in the 1st minute.
1212
- Fix display of subscripts. (#1584, #1807)
1313
- Allow Maxima strings with newlines. (#76)
14+
- Support Maxima which uses ABCL.
1415

1516
# 24.08.0
1617

src/wxMathML.lisp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2309,9 +2309,10 @@ Submit bug reports by following the 'New issue' link on that page."))
23092309
;;; shipped with debian and ubuntu (at least in Feb 2017) doesn't.
23102310
#+gcl (xchdir dir)
23112311
#+gcl (setf *default-pathname-defaults* dir)
2312+
#+abcl (setf *default-pathname-defaults* (truename dir))
23122313

23132314
(ignore-errors (setf *default-pathname-defaults* dir))
2314-
#-(or allegro clisp cmu cormanlisp gcl lispworks lucid sbcl ccl ecl) (format t
2315+
#-(or allegro clisp cmu cormanlisp gcl lispworks lucid sbcl ccl ecl abcl) (format t
23152316
"Info: wxMathml.cpp: Changing the working dir during a maxima session isn't implemented for this lisp.")
23162317
(namestring dir)
23172318
(wx-print-variables)

0 commit comments

Comments
 (0)