mirror of
https://gitlab.com/vindarel/ciel.git
synced 2025-12-15 14:51:16 -08:00
REPL: print result as is, not æsthetically
~a "foo" prints foo ~p "foo" prints "foo" same with :symbols etc
This commit is contained in:
parent
3907bc5972
commit
6f42cd4835
1 changed files with 2 additions and 1 deletions
|
|
@ -223,7 +223,8 @@
|
|||
(cl-ansi-text:red "Evaluation error: ")
|
||||
condition))))
|
||||
(add-res text *last-result*)
|
||||
(if *last-result* (format t "~a~a~%" *ret* *last-result*)))
|
||||
(if *last-result*
|
||||
(format t "~a~s~%" *ret* *last-result*)))
|
||||
|
||||
(defun handle-lisp (before text)
|
||||
(let* ((new-txt (format nil "~a ~a" before text))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue