diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | exec/key-handler | 2 | ||||
-rw-r--r-- | main.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -VERSION := git-20170107 +VERSION := git-20170213 PREFIX := /usr/local MANPREFIX := $(PREFIX)/share/man diff --git a/exec/key-handler b/exec/key-handler index 439ab2e..dd4d1bb 100644 --- a/exec/key-handler +++ b/exec/key-handler @@ -18,7 +18,7 @@ readonly TMPFILE="/tmp/sxiv.$$" rotate() { degree="$1" - tr '\n' \0' | xargs -0 realpath | sort | uniq | while read file; do + tr '\n' '\0' | xargs -0 realpath | sort | uniq | while read file; do case "$(file -b -i "$file")" in image/jpeg*) jpegtran -rotate "$degree" -copy all -outfile "$file" "$file" ;; *) mogrify -rotate "$degree" "$file" ;; @@ -548,7 +548,7 @@ void run_key_handler(const char *key, unsigned int mask) f++; } } - /* drop user input events that occured while running the key handler */ + /* drop user input events that occurred while running the key handler */ while (XCheckIfEvent(win.env.dpy, &dump, is_input_ev, NULL)); end: |