diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-08-09 16:18:15 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-08-09 16:18:15 -0700 |
| commit | cf07e53bae8492fc6ee8a8d394e2fba858daa0a4 (patch) | |
| tree | da44595a443ece72ffe3cb231f2ca027ebb3c266 /ident.c | |
| parent | Merge branch 'ew/hash-with-openssl-evp' (diff) | |
| parent | ident: don't consider '.' a crud (diff) | |
| download | git-cf07e53bae8492fc6ee8a8d394e2fba858daa0a4.tar.gz git-cf07e53bae8492fc6ee8a8d394e2fba858daa0a4.zip | |
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.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -203,7 +203,6 @@ void reset_ident_date(void) static int crud(unsigned char c) { return c <= 32 || - c == '.' || c == ',' || c == ':' || c == ';' || |
