diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-29 01:18:32 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-29 01:18:32 +0100 |
commit | cdaf06f8972e22ac9170dd5c269c6ac8125b4326 (patch) | |
tree | 8314273274ecc59f5978cbce35df4286d4ae3dcd /src/satd-list.c | |
parent | more character that are not sh safe (diff) | |
download | sat-cdaf06f8972e22ac9170dd5c269c6ac8125b4326.tar.gz sat-cdaf06f8972e22ac9170dd5c269c6ac8125b4326.tar.bz2 sat-cdaf06f8972e22ac9170dd5c269c6ac8125b4326.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r-- | src/satd-list.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/satd-list.c b/src/satd-list.c index a9fce0f..402ee58 100644 --- a/src/satd-list.c +++ b/src/satd-list.c @@ -52,8 +52,6 @@ quote(const char *str) for (s = (const unsigned char *)str; *s; s++) { if (*s < ' ') in++; else if (UNSAFE(*s)) sn++; - else if (*s == '"') sn++; - else if (*s == '$') sn++; else if (*s == '\\') bn++; else if (*s == '\'') qn++; else rn++; |