1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-25 10:37:50 +02:00

Merge branch 'kh/commentchar-config-error-message'

Doc update.

* kh/commentchar-config-error-message:
  config: tell the user that we expect an ASCII character
This commit is contained in:
Junio C Hamano 2023-03-31 17:50:23 -07:00
commit 5c93cfdafd

View File

@ -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;
}