diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/keyevents.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Sat, 12 Aug 2017 05:05:24 +0200 Daniel Friesel <derf+feh@finalrewind.org> + +* Release v2.19.2 + * Show ImageMagick loader errors unless --quiet is specified + * Fix crash when handling certain media keys (introduced in 2.19.1) + Tue, 25 Jul 2017 18:40:33 +0200 Daniel Friesel <derf+feh@finalrewind.org> * Release v2.19.1 diff --git a/src/keyevents.c b/src/keyevents.c index 1905ea5..861a7a7 100644 --- a/src/keyevents.c +++ b/src/keyevents.c @@ -44,7 +44,7 @@ static void feh_set_kb(fehkey *key, unsigned int s0, unsigned int y0, unsigned static inline int ignore_space(int keysym) { /* - * Passing values which do not find inside a signed 8bit char to isprint, + * Passing values which do not fit inside a signed 8bit char to isprint, * isspace and the likes is undefined behaviour... which glibc (for some * values) implements as a segmentation fault. So let's not do that. */ |