diff options
author | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2021-05-22 17:00:11 +0200 |
---|---|---|
committer | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2021-05-22 17:02:46 +0200 |
commit | 8569d6e13ceb02d98ab9de7d786ee68dccce72f3 (patch) | |
tree | f6a7846ae40e93b9b41344aa1aa9a1c68ea81dcb | |
parent | d71893802fe424e3123ced8c6ed158958487f716 (diff) | |
download | gdb-8569d6e13ceb02d98ab9de7d786ee68dccce72f3.zip gdb-8569d6e13ceb02d98ab9de7d786ee68dccce72f3.tar.gz gdb-8569d6e13ceb02d98ab9de7d786ee68dccce72f3.tar.bz2 |
Fix option type comments for CMDARG_EARLYINIT_FILE and CMDARG_EARLYINIT_COMMAND.
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)
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/main.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f15bd05..6e09089 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +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 @@ -574,14 +574,14 @@ enum cmdarg_kind /* 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 }; |