Skip to content

Commit

Permalink
Add in exception for SBCL when compiling %_ce_rem, #1385.
Browse files Browse the repository at this point in the history
  • Loading branch information
sangwinc committed Feb 5, 2025
1 parent b93f1df commit e492b91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stack/maxima/stacktex.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,9 @@
;; Added 20 Feb 2022.
;; Remove %_C and %_E for display purposes. The Maxima function %_ce_rem is defined in utils.mac

(defmfun $tex1 (x) (reduce #'strcat (tex ($%_ce_rem x) nil nil 'mparen 'mparen)))
(defmfun $tex1 (x)
#+sbcl (declare (notinline $%_ce_rem))
(reduce #'strcat (tex ($%_ce_rem x) nil nil 'mparen 'mparen)))

;; *************************************************************************************************
;; Added 30 May 2022.
Expand Down

0 comments on commit e492b91

Please sign in to comment.