diff options
author | Jeff King <peff@peff.net> | 2012-05-21 19:10:11 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-22 09:07:54 -0700 |
commit | b9f0ac1710ed1d2dc865ab40893720e9a242e362 (patch) | |
tree | fd1a63c65b966f9f3cc99da8b9ec8d90519153ca /cache.h | |
parent | 43ae9f47ab8a7762d914e91d6f57b79126986640 (diff) | |
download | git-b9f0ac1710ed1d2dc865ab40893720e9a242e362.tar.gz |
fmt_ident: drop IDENT_WARN_ON_NO_NAME code
There are no more callers who want this, so we can drop it.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -887,9 +887,8 @@ unsigned long approxidate_careful(const char *, int *); unsigned long approxidate_relative(const char *date, const struct timeval *now); enum date_mode parse_date_format(const char *format); -#define IDENT_WARN_ON_NO_NAME 1 -#define IDENT_ERROR_ON_NO_NAME 2 -#define IDENT_NO_DATE 4 +#define IDENT_ERROR_ON_NO_NAME 1 +#define IDENT_NO_DATE 2 extern const char *git_author_info(int); extern const char *git_committer_info(int); extern const char *fmt_ident(const char *name, const char *email, const char *date_str, int); |