X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=quote.c;h=a418a0f803f91d218b66ae89a1e8615a94ff27bc;hb=b1bfcae438adb485bb66e2f59396373809e346e6;hp=ee7d62c751272f511d46894e5c5cd32e4403c721;hpb=019298015bb7c826b72f2573047b7221b0921fd3;p=git.git diff --git a/quote.c b/quote.c index ee7d62c75..a418a0f80 100644 --- a/quote.c +++ b/quote.c @@ -209,7 +209,7 @@ static int quote_c_style_counted(const char *name, int namelen, if (!ch) break; if ((ch < ' ') || (ch == '"') || (ch == '\\') || - (ch == 0177)) { + (ch >= 0177)) { needquote = 1; switch (ch) { case '\a': EMITQ(); ch = 'a'; break;