/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Style: place opening brace of a function definition at column 1
[git/git.git]
/
quote.c
diff --git
a/quote.c
b/quote.c
index
919d092
..
0455783
100644
(file)
--- a/
quote.c
+++ b/
quote.c
@@
-131,7
+131,8
@@
static signed char const sq_lookup[256] = {
/* 0x80 */ /* set to 0 */
};
-static inline int sq_must_quote(char c) {
+static inline int sq_must_quote(char c)
+{
return sq_lookup[(unsigned char)c] + quote_path_fully > 0;
}