diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-03-31 17:50:23 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-03-31 17:50:23 -0700 |
| commit | 5c93cfdafd64222043837caae87ea9c9e6c89da1 (patch) | |
| tree | 735d7c0ed641c42d9957ecbd8463354468b5c371 | |
| parent | 0d865049f71a12985428282b5f88c0d33d74e415 (diff) | |
| parent | d3b3419f8f287cd9d17be30e50937cbc7c4951ff (diff) | |
| download | git-5c93cfdafd64222043837caae87ea9c9e6c89da1.tar.gz | |
Merge branch 'kh/commentchar-config-error-message'
Doc update.
* kh/commentchar-config-error-message:
config: tell the user that we expect an ASCII character
| -rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1686,7 +1686,7 @@ static int git_default_core_config(const char *var, const char *value, void *cb) comment_line_char = value[0]; auto_comment_line_char = 0; } else - return error(_("core.commentChar should only be one character")); + return error(_("core.commentChar should only be one ASCII character")); return 0; } |
