aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2011-09-12 13:33:51 +1000
committerSteve Bennett <steveb@workware.net.au>2011-09-12 16:58:56 +1000
commitd9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6 (patch)
tree11c7f1bfb943313d05423884425dae6ecf18e7d2 /jim-posix.c
parent39f8b5dedf4b713ce58cfa4bdd84d473d30fbeba (diff)
downloadjimtcl-d9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6.zip
jimtcl-d9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6.tar.gz
jimtcl-d9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6.tar.bz2
Remove all trailing whitespace in source
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-posix.c')
-rw-r--r--jim-posix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/jim-posix.c b/jim-posix.c
index 2015f5f..0cf3604 100644
--- a/jim-posix.c
+++ b/jim-posix.c
@@ -68,18 +68,18 @@ static int Jim_PosixForkCommand(Jim_Interp *interp, int argc, Jim_Obj *const *ar
* If -nohang is specified, and the process is still alive, returns
*
* {0 none 0}
- *
+ *
* If the process does not exist or has already been waited for, returns:
*
- * {-1 error <error-description>}
+ * {-1 error <error-description>}
*
* If the process exited normally, returns:
*
- * {<pid> exit <exit-status>}
+ * {<pid> exit <exit-status>}
*
* If the process terminated on a signal, returns:
*
- * {<pid> signal <signal-number>}
+ * {<pid> signal <signal-number>}
*
* Otherwise (core dump, stopped, continued, ...), returns:
*