help_format        39 builtin/help.c static enum help_format help_format = HELP_FORMAT_NONE;
help_format        43 builtin/help.c 	OPT_SET_INT('m', "man", &help_format, N_("show man page"), HELP_FORMAT_MAN),
help_format        44 builtin/help.c 	OPT_SET_INT('w', "web", &help_format, N_("show manual in web browser"),
help_format        46 builtin/help.c 	OPT_SET_INT('i', "info", &help_format, N_("show info page"),
help_format        56 builtin/help.c static enum help_format parse_help_format(const char *format)
help_format       265 builtin/help.c 		help_format = parse_help_format(value);
help_format       460 builtin/help.c 	enum help_format parsed_help_format;
help_format       464 builtin/help.c 	parsed_help_format = help_format;
help_format       495 builtin/help.c 		help_format = parsed_help_format;
help_format       496 builtin/help.c 	if (help_format == HELP_FORMAT_NONE)
help_format       497 builtin/help.c 		help_format = parse_help_format(DEFAULT_HELP_FORMAT);
help_format       506 builtin/help.c 	switch (help_format) {