diff options
author | Stephan Beyer <s-beyer@gmx.net> | 2008-07-25 18:28:41 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-25 17:08:34 -0700 |
commit | d82f33e20dcf068e679eff2a16ecf8fe7b10fb31 (patch) | |
tree | 8dc04ec3de24d1466828730988b33b96d8d9a960 /Makefile | |
parent | d9d9e6ee6366fed93a4beff3994bad376f81eabd (diff) | |
download | git-d82f33e20dcf068e679eff2a16ecf8fe7b10fb31.tar.gz git-d82f33e20dcf068e679eff2a16ecf8fe7b10fb31.tar.xz |
Move launch_editor() from builtin-tag.c to editor.c
launch_editor() is declared in strbuf.h but defined in builtin-tag.c.
This patch moves launch_editor() into a new source file editor.c,
but keeps the declaration in strbuf.h.
Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -410,6 +410,7 @@ LIB_OBJS += diff-no-index.o LIB_OBJS += diff-lib.o LIB_OBJS += diff.o LIB_OBJS += dir.o +LIB_OBJS += editor.o LIB_OBJS += entry.o LIB_OBJS += environment.o LIB_OBJS += exec_cmd.o |