help.c: Fix line endings (CRLF -> LF)

This commit is contained in:
Steffen Prohaska
2008-07-03 08:21:43 +02:00
parent 065eb05f3f
commit 3f3d496f8b

8
help.c
View File

@@ -28,12 +28,12 @@ enum help_format {
HELP_FORMAT_WEB,
};
static int show_all = 0;
#ifdef __MINGW32__
static enum help_format help_format = HELP_FORMAT_WEB;
static int show_all = 0;
#ifdef __MINGW32__
static enum help_format help_format = HELP_FORMAT_WEB;
#else
static enum help_format help_format = HELP_FORMAT_MAN;
#endif
#endif
static struct option builtin_help_options[] = {
OPT_BOOLEAN('a', "all", &show_all, "print all available commands"),
OPT_SET_INT('m', "man", &help_format, "show man page", HELP_FORMAT_MAN),