Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git-update-index(1): fix use of quoting in section title
[gitweb.git]
/
quote.c
diff --git
a/quote.c
b/quote.c
index e3a4d4aef3478148ff89aebeba23e1cbf4202ba1..dc5c0a7715e4782024ede6dd90b150f6e71022ee 100644
(file)
--- 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;