diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-30 12:10:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-30 12:10:06 -0700 |
commit | 0bfc7c10d865697cc59081a4bc55a3add4958be0 (patch) | |
tree | d73eda3413bed427be382df53d172de761e0b544 /xdiff/xemit.c | |
parent | 9907d1359ccb1e670a408e5ab91d2b6048bd997b (diff) | |
parent | 6b2dd0e56ba2bd668396afe9e983dddfd1f441ca (diff) | |
download | git-0bfc7c10d865697cc59081a4bc55a3add4958be0.tar.gz |
Merge branch 'fc/styles'
C coding style fixes.
* fc/styles:
block-sha1/sha1.c: have SP around arithmetic operators
base85.c: have SP around arithmetic operators
archive.c: have SP around arithmetic operators
alloc.c: have SP around arithmetic operators
abspath.c: have SP around arithmetic operators
alias: have SP around arithmetic operators
C: have space around && and || operators
Diffstat (limited to 'xdiff/xemit.c')
-rw-r--r-- | xdiff/xemit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xdiff/xemit.c b/xdiff/xemit.c index 4d8645867e..4266ada23f 100644 --- a/xdiff/xemit.c +++ b/xdiff/xemit.c @@ -108,7 +108,7 @@ static long def_ff(const char *rec, long len, char *buf, long sz, void *priv) { if (len > 0 && (isalpha((unsigned char)*rec) || /* identifier? */ - *rec == '_' || /* also identifier? */ + *rec == '_' || /* also identifier? */ *rec == '$')) { /* identifiers from VMS and other esoterico */ if (len > sz) len = sz; |