Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Do not quote SP.
[gitweb.git]
/
quote.c
diff --git
a/quote.c
b/quote.c
index 357f81a740aaed18632023b2f29137773e58eaf7..92e07f070ff54be3f5d0ca02582a7c9e1fd1fa53 100644
(file)
--- a/
quote.c
+++ b/
quote.c
@@
-75,8
+75,8
@@
int quote_c_style(const char *name, char *outbuf, FILE *outfp, int no_dq)
EMIT('"');
for (sp = name; (ch = *sp++); ) {
- if ((ch <
= ' ') || (ch == '"
') ||
- (ch ==
'\\') || (ch ==
0177)) {
+ if ((ch <
' ') || (ch == '"') || (ch == '\\
') ||
+ (ch == 0177)) {
needquote = 1;
switch (ch) {
case '\a': EMITQ(); ch = 'a'; break;