shithub: mc

Download patch

ref: e91fba6d7709fd6f8dbf0ff9d45721e0924256d1
parent: c5a85da300fa7d5ade3df6b27a2872872379c9b5
author: Ori Bernstein <[email protected]>
date: Wed Dec 31 09:27:09 EST 2014

Make the Wsignal name clearer.

--- a/libstd/wait+posixy.myr
+++ b/libstd/wait+posixy.myr
@@ -7,7 +7,7 @@
 	type waitstatus = union
 		`Wsuccess
 		`Wfailure
-		`Wsignal
+		`Wsignalled
 		`Waiterror
 	;;
 
@@ -26,7 +26,7 @@
 		a process exits. Loop instead.
 		*/
 		| `sys.Waitstop sig:	goto again
-		| `sys.Waitsig sig:	-> `Wsignal
+		| `sys.Waitsig sig:	-> `Wsignalled
 		| `sys.Waitexit status:
 			if status == 0
 				-> `Wsuccess