From a42d62cd92a5f965024e483d7a6b2f3293625472 Mon Sep 17 00:00:00 2001 From: buffet <niclas@countingsort.com> Date: Tue, 2 Oct 2018 17:33:03 +0200 Subject: [PATCH] Now able to actually quit --- lit/wmaffle.lit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lit/wmaffle.lit b/lit/wmaffle.lit index ffbe6ab..88601af 100644 --- a/lit/wmaffle.lit +++ b/lit/wmaffle.lit @@ -249,7 +249,7 @@ sig_handler(int sig) // EMPTY } } else if (sig == SIGINT || sig == SIGHUP || sig == SIGTERM) { - // TODO: Set about to quit to 1 + g_about_to_quit = 1; } } ---