Add "const" qualifier to "char *editor_program".
Also use "git_config_string" to simplify "config.c" code where "editor_program" is set. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
872da32d80
commit
ee9601e6be
2
cache.h
2
cache.h
@ -614,7 +614,7 @@ extern const char *pager_program;
|
|||||||
extern int pager_in_use(void);
|
extern int pager_in_use(void);
|
||||||
extern int pager_use_color;
|
extern int pager_use_color;
|
||||||
|
|
||||||
extern char *editor_program;
|
extern const char *editor_program;
|
||||||
extern char *excludes_file;
|
extern char *excludes_file;
|
||||||
|
|
||||||
/* base85 */
|
/* base85 */
|
||||||
|
8
config.c
8
config.c
@ -443,12 +443,8 @@ int git_default_config(const char *var, const char *value)
|
|||||||
if (!strcmp(var, "core.pager"))
|
if (!strcmp(var, "core.pager"))
|
||||||
return git_config_string(&pager_program, var, value);
|
return git_config_string(&pager_program, var, value);
|
||||||
|
|
||||||
if (!strcmp(var, "core.editor")) {
|
if (!strcmp(var, "core.editor"))
|
||||||
if (!value)
|
return git_config_string(&editor_program, var, value);
|
||||||
return config_error_nonbool(var);
|
|
||||||
editor_program = xstrdup(value);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!strcmp(var, "core.excludesfile")) {
|
if (!strcmp(var, "core.excludesfile")) {
|
||||||
if (!value)
|
if (!value)
|
||||||
|
@ -32,7 +32,7 @@ size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT;
|
|||||||
size_t delta_base_cache_limit = 16 * 1024 * 1024;
|
size_t delta_base_cache_limit = 16 * 1024 * 1024;
|
||||||
const char *pager_program;
|
const char *pager_program;
|
||||||
int pager_use_color = 1;
|
int pager_use_color = 1;
|
||||||
char *editor_program;
|
const char *editor_program;
|
||||||
char *excludes_file;
|
char *excludes_file;
|
||||||
int auto_crlf = 0; /* 1: both ways, -1: only when adding git objects */
|
int auto_crlf = 0; /* 1: both ways, -1: only when adding git objects */
|
||||||
unsigned whitespace_rule_cfg = WS_DEFAULT_RULE;
|
unsigned whitespace_rule_cfg = WS_DEFAULT_RULE;
|
||||||
|
Loading…
Reference in New Issue
Block a user