From c614c4121f67edd89b3bb95c6e350ef1493f27a6 Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Fri, 9 Oct 2015 22:17:20 -0700
Subject: [PATCH] Include the exit code when printing the process structure.

It's really nice to see the exit code of the process when printing out
the process structure.

Fix a typo too: "tings" -> "things".
---
 src/code/run-program.lisp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/code/run-program.lisp b/src/code/run-program.lisp
index ee29dfa0f..816e0d5c3 100644
--- a/src/code/run-program.lisp
+++ b/src/code/run-program.lisp
@@ -90,15 +90,16 @@
   output		    ; Stream from child's output or nil.
   error			    ; Stream from child's error output or nil.
   status-hook		    ; Closure to call when PROC changes status.
-  plist			    ; Place for clients to stash tings.
+  plist			    ; Place for clients to stash things.
   cookie		    ; List of the number of pipes from the subproc.
   )
 
 (defun %print-process (proc stream depth)
   (declare (ignore depth))
-  (format stream "#<process ~D ~S>"
+  (format stream "#<process ~D ~S code: ~S>"
 	  (process-pid proc)
-	  (process-status proc)))
+	  (process-status proc)
+	  (process-exit-code proc)))
 
 ;;; PROCESS-STATUS -- Public.
 ;;;
-- 
GitLab