From: Linus Torvalds Date: Thu, 27 Apr 2006 16:02:54 +0000 (-0700) Subject: Fix "git help -a" terminal autosizing X-Git-Tag: v1.4.0-rc1~209 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=83aa18eade572679319406d6dc12a81599a4d57e;p=git.git Fix "git help -a" terminal autosizing When I split out the builtin commands into their own files, I left the include of in git.c rather than moving it to the file that needed it (builtin-help.c). Nobody seems to have noticed, because everything still worked, but because the TIOCGWINSZ macro was now no longer defined when compiling the "term_columns()" function, it would no longer automatically notice the terminal size unless your system used the ancient "COLUMNS" environment variable approach. Trivially fixed by just moving the header include to the file that actually needs it. Signed-off-by: Linus Torvalds Signed-off-by: Junio C Hamano --- diff --git a/builtin-help.c b/builtin-help.c index 10a59cc4..7470faa5 100644 --- a/builtin-help.c +++ b/builtin-help.c @@ -3,6 +3,7 @@ * * Builtin help-related commands (help, usage, version) */ +#include #include "cache.h" #include "builtin.h" #include "exec_cmd.h" diff --git a/git.c b/git.c index aa2b814d..01b7e28b 100644 --- a/git.c +++ b/git.c @@ -8,7 +8,6 @@ #include #include #include -#include #include "git-compat-util.h" #include "exec_cmd.h"