mirror of
https://github.com/git/git.git
synced 2026-03-13 18:33:25 +01:00
help.c: Fix line endings (CRLF -> LF)
This commit is contained in:
8
help.c
8
help.c
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user