about summary refs log tree commit diff
path: root/lr.c
diff options
context:
space:
mode:
authorMichael Gehring <mg@ebfe.org>2016-02-25 19:12:49 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2016-02-26 12:05:39 +0100
commitff571c5ca19b74869d05f352a2afae00781d87cc (patch)
tree68f3291f18788edc337b1585f20f9a65e294a555 /lr.c
parent6f112f6a33bf78b5d27e823fa5cbbabf7998085e (diff)
downloadlr-ff571c5ca19b74869d05f352a2afae00781d87cc.tar.gz
lr-ff571c5ca19b74869d05f352a2afae00781d87cc.tar.xz
lr-ff571c5ca19b74869d05f352a2afae00781d87cc.zip
fix print_shquoted mistaking 'W' as special
Closes: #9 [via git-merge-pr]
Diffstat (limited to 'lr.c')
-rw-r--r--lr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lr.c b/lr.c
index 9ff06f6..e6265c3 100644
--- a/lr.c
+++ b/lr.c
@@ -1305,7 +1305,7 @@ print_shquoted(const char *s)
 	                         "\011\012\013\014\015\016\017\020"
 	                         "\021\022\023\024\025\026\027\030"
 	                         "\031\032\033\034\035\036\037\040"
-	                         "`^#*[]=|\\?${}()'\"<>&;\127")) {
+	                         "`^#*[]=|\\?${}()'\"<>&;\177")) {
 		printf("%s", s);
 		return;
 	}