Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/sage/interfaces/maxima_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,9 @@
# question and returning the answer. Our version throws an error in
# which the text of the question is included. This is accomplished by
# redirecting *standard-output* to a string.
#
# After an update in Issue 31553, this routine also preprocesses the
# text to replace space symbols with strings. This prevents those
# symbols from being turned into ugly newlines -- a problem that we
# used to avoid with a custom patch.
ecl_eval(r"""
(defun retrieve (msg flag &aux (print? nil))
(declare (special msg flag print?))
(setq msg (mapcar #'(lambda (x) (if (eq x '| |) " " x)) msg))
(or (eq flag 'noprint) (setq print? t))
(error
(concatenate 'string
Expand Down
Loading