aboutsummaryrefslogtreecommitdiffstats
path: root/ident.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-08-09 16:18:15 -0700
committerJunio C Hamano <gitster@pobox.com>2023-08-09 16:18:15 -0700
commitcf07e53bae8492fc6ee8a8d394e2fba858daa0a4 (patch)
treeda44595a443ece72ffe3cb231f2ca027ebb3c266 /ident.c
parent889c94d2a0f4041c8237044db1d7ffd0190a2e0f (diff)
parent1c04cb0744d2acdcaebc77b0e78c47efbba67fd5 (diff)
downloadgit-cf07e53bae8492fc6ee8a8d394e2fba858daa0a4.tar.gz
Merge branch 'bc/ident-dot-is-no-longer-crud-letter'
Exclude "." from the set of characters to be removed from the beginning and the end of the human-readable name. * bc/ident-dot-is-no-longer-crud-letter: ident: don't consider '.' a crud
Diffstat (limited to 'ident.c')
-rw-r--r--ident.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ident.c b/ident.c
index 08be4d0747..cc7afdbf81 100644
--- a/ident.c
+++ b/ident.c
@@ -203,7 +203,6 @@ void reset_ident_date(void)
static int crud(unsigned char c)
{
return c <= 32 ||
- c == '.' ||
c == ',' ||
c == ':' ||
c == ';' ||