Skip to content

Commit

Permalink
Support Maxima which uses ABCL. implemented (wx-cd dir) for this Lisp.
Browse files Browse the repository at this point in the history
Hopefully correct? I am not a Lisp expert.
  • Loading branch information
daute committed Nov 12, 2024
1 parent ae49966 commit fc6f920
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- WxMaxima was not responsive in the 1st minute.
- Fix display of subscripts. (#1584, #1807)
- Allow Maxima strings with newlines. (#76)
- Support Maxima which uses ABCL.

# 24.08.0

Expand Down
3 changes: 2 additions & 1 deletion src/wxMathML.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2309,9 +2309,10 @@ Submit bug reports by following the 'New issue' link on that page."))
;;; shipped with debian and ubuntu (at least in Feb 2017) doesn't.
#+gcl (xchdir dir)
#+gcl (setf *default-pathname-defaults* dir)
#+abcl (setf *default-pathname-defaults* (truename dir))

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

0 comments on commit fc6f920

Please sign in to comment.