Skip to content

Commit 78f924b

Browse files
committed
main,cosmetic: align fields in a structure initialization
Signed-off-by: Masatake YAMATO <[email protected]>
1 parent 65426ae commit 78f924b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

main/options.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2907,24 +2907,24 @@ static parametricOption ParametricOptions [] = {
29072907

29082908
static booleanOption BooleanOptions [] = {
29092909
{ "append", &Option.append, true, STAGE_ANY },
2910-
{ "file-scope", ((bool *)XTAG_FILE_SCOPE), false, STAGE_ANY, setBooleanToXtagWithWarning },
2911-
{ "file-tags", ((bool *)XTAG_FILE_NAMES), false, STAGE_ANY, setBooleanToXtagWithWarning },
2910+
{ "file-scope", ((bool *)XTAG_FILE_SCOPE), false, STAGE_ANY, setBooleanToXtagWithWarning },
2911+
{ "file-tags", ((bool *)XTAG_FILE_NAMES), false, STAGE_ANY, setBooleanToXtagWithWarning },
29122912
{ "filter", &Option.filter, true, STAGE_ANY },
29132913
{ "guess-language-eagerly", &Option.guessLanguageEagerly, false, STAGE_ANY },
29142914
{ "line-directives",&Option.lineDirectives, false, STAGE_ANY },
29152915
{ "links", &Option.followLinks, false, STAGE_ANY },
2916-
{ "machinable", &localOption.machinable, true, STAGE_ANY },
2916+
{ "machinable", &localOption.machinable, true, STAGE_ANY },
29172917
{ "put-field-prefix", &Option.putFieldPrefix, false, STAGE_ANY },
29182918
{ "print-language", &Option.printLanguage, true, STAGE_ANY },
29192919
{ "quiet", &Option.quiet, false, STAGE_ANY },
29202920
#ifdef RECURSE_SUPPORTED
29212921
{ "recurse", &Option.recurse, false, STAGE_ANY },
29222922
#endif
2923-
{ "verbose", &ctags_verbose, false, STAGE_ANY },
2923+
{ "verbose", &ctags_verbose, false, STAGE_ANY },
29242924
#ifdef WIN32
29252925
{ "use-slash-as-filename-separator", (bool *)&Option.useSlashAsFilenameSeparator, false, STAGE_ANY },
29262926
#endif
2927-
{ "with-list-header", &localOption.withListHeader, true, STAGE_ANY },
2927+
{ "with-list-header", &localOption.withListHeader, true, STAGE_ANY },
29282928
{ "_fatal-warnings",&Option.fatalWarnings, false, STAGE_ANY },
29292929
};
29302930

0 commit comments

Comments
 (0)