Merge branch 'maint-1.5.1' into maint

* maint-1.5.1:
  git-config: Improve documentation of git-config file handling
  git-config: Various small fixes to asciidoc documentation
  decode_85(): fix missing return.
  fix signed range problems with hex conversions
This commit is contained in:
Junio C Hamano
2007-05-31 00:09:26 -07:00
4 changed files with 69 additions and 15 deletions

View File

@ -359,8 +359,8 @@ extern int legacy_loose_object(unsigned char *);
extern int has_pack_file(const unsigned char *sha1);
extern int has_pack_index(const unsigned char *sha1);
extern signed char hexval_table[256];
static inline unsigned int hexval(unsigned int c)
extern const signed char hexval_table[256];
static inline unsigned int hexval(unsigned char c)
{
return hexval_table[c];
}