The comments in the enum cmdarg_kind were using -sx and -sex instead
of -eix and -eiex.
(Note that gdb --help does not speak about these options).
(pushed as obvious)
+2021-05-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
+
+ * main.c (enum cmdarg_kind): Fix option type comments for
+ CMDARG_EARLYINIT_FILE and CMDARG_EARLYINIT_COMMAND.
+
2021-05-21 Tom de Vries <tdevries@suse.de>
PR testsuite/25047
/* Option type -ix. */
CMDARG_INIT_FILE,
-
+
/* Option type -iex. */
CMDARG_INIT_COMMAND,
- /* Option type -sx. */
+ /* Option type -eix. */
CMDARG_EARLYINIT_FILE,
- /* Option type -sex. */
+ /* Option type -eiex. */
CMDARG_EARLYINIT_COMMAND
};