(wrong string) ünnich

From: <git_AT_suckless.org>
Date: Mon, 13 Feb 2017 11:21:05 +0100 (CET)

commit ba4b84a8b1cf537b292ff4679806cfe33330b161
Author: Bert Münnich <ber.t_AT_posteo.de>
AuthorDate: Mon Feb 13 11:20:58 2017 +0100
Commit: Bert Münnich <ber.t_AT_posteo.de>
CommitDate: Mon Feb 13 11:20:58 2017 +0100

    Fix missing quote in key-handler from commit 5c607ad

diff --git a/Makefile b/Makefile
index 84d1ce2..d41d6b8 100644
--- a/Makefile
+++ b/Makefile
_AT_@ -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
_AT_@ -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" ;;
Received on Mon Feb 13 2017 - 11:21:05 CET

This archive was generated by hypermail 2.3.0 : Mon Feb 13 2017 - 11:24:17 CET