Skip to content

Commit

Permalink
Merge branch 'kh/commentchar-config-error-message'
Browse files Browse the repository at this point in the history
Doc update.

* kh/commentchar-config-error-message:
  config: tell the user that we expect an ASCII character
  • Loading branch information
gitster committed Apr 1, 2023
2 parents 0d86504 + d3b3419 commit 5c93cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5c93cfd

Please sign in to comment.