From 4ff15ebe65eb1099819818e8946c41dd3463ef00 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 21 Apr 2019 08:59:07 -0400 Subject: [PATCH] oops forgot version --- simpledisplay.d | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index 343988b..8d72467 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -848,8 +848,6 @@ version(Windows) { // http://wiki.dlang.org/Simpledisplay.d -// FIXME: SIGINT handler is necessary to clean up shared memory handles upon ctrl+c - // see : http://www.sbin.org/doc/Xlib/chapt_09.html section on Keyboard Preferences re: scroll lock led // Cool stuff: I want right alt and scroll lock to do different stuff for personal use. maybe even right ctrl @@ -2722,6 +2720,7 @@ struct EventLoop { impl.notExited = false; } + version(linux) ref void delegate(int) signalHandler() { assert(impl !is null); return impl.signalHandler;