aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2008-02-16 06:01:41 +0100
committerJunio C Hamano <gitster@pobox.com>2008-02-15 21:24:53 -0800
commitee9601e6bef2281e3183e127e1e4e36ed257af7a (patch)
tree3947e274d394f2f6b48e159de8e07c0cd9b3db4d /cache.h
parent872da32d80c004c26a19a5d6cb31eb3e7f034094 (diff)
downloadgit-ee9601e6bef2281e3183e127e1e4e36ed257af7a.tar.gz
git-ee9601e6bef2281e3183e127e1e4e36ed257af7a.tar.xz
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>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 1ecaef14c..ce7b386a4 100644
--- a/cache.h
+++ b/cache.h
@@ -614,7 +614,7 @@ extern const char *pager_program;
extern int pager_in_use(void);
extern int pager_use_color;
-extern char *editor_program;
+extern const char *editor_program;
extern char *excludes_file;
/* base85 */