Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2008-02-16 08:01:41 +0300
committerJunio C Hamano <gitster@pobox.com>2008-02-16 08:24:53 +0300
commitee9601e6bef2281e3183e127e1e4e36ed257af7a (patch)
tree3947e274d394f2f6b48e159de8e07c0cd9b3db4d /cache.h
parent872da32d80c004c26a19a5d6cb31eb3e7f034094 (diff)
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 1ecaef14c3..ce7b386a4d 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 */