aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-07-02 12:30:44 -0400
committerJesse Luehrs <doy@tozt.net>2017-07-02 12:30:44 -0400
commitdf889ab39a5e4426024a8780bb91815fb3cb4245 (patch)
treefc84334a99c3db079a3924bacab29803e6871bcc
parentcda93f7b0c793b64f62d0367acde8437e6a0e57d (diff)
downloadrunes-df889ab39a5e4426024a8780bb91815fb3cb4245.tar.gz
runes-df889ab39a5e4426024a8780bb91815fb3cb4245.zip
suppress fallthrough warning
-rw-r--r--src/window-xlib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index 54dedfb..461733a 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -786,6 +786,7 @@ static void runes_window_handle_key_event(RunesTerm *t, XKeyEvent *e)
if (s == XLookupKeySym) {
break;
}
+ /* fallthrough */
case XLookupChars:
if (e->state & Mod1Mask) {
runes_window_write_to_pty(t, "\033", 1);