summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-08-12 05:08:00 +0200
committerDaniel Friesel <derf@finalrewind.org>2017-08-12 05:08:00 +0200
commit19655b459dd99d31d05b43c4c68cd755bfe30d95 (patch)
treedd439995fcf985502854752acaebf0e3ffbea2da
parentb7cf37bcd0e6480a6a80246725dc84ec290bde9b (diff)
Release v2.19.22.19.2
-rw-r--r--ChangeLog6
-rw-r--r--src/keyevents.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 47d6f4e..d1e7f28 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
*/