Skip to content
Snippets Groups Projects
Commit ae08122d authored by Raymond Toy's avatar Raymond Toy
Browse files

Give hint on what the last value of the printed process is

Left this out in the previous commit.
parent 131c1e3f
No related branches found
No related tags found
No related merge requests found
......@@ -97,9 +97,10 @@
(defun %print-process (proc stream depth)
(declare (ignore depth))
(print-unreadable-object (proc stream :type t :identity t)
(format stream "~D ~S ~D"
(format stream "~D ~S ~S ~D"
(process-pid proc)
(process-status proc)
:exit-code
(process-exit-code proc))))
;;; PROCESS-STATUS -- Public.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment