Fix option type comments for CMDARG_EARLYINIT_FILE and CMDARG_EARLYINIT_COMMAND.
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Sat, 22 May 2021 15:00:11 +0000 (17:00 +0200)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Sat, 22 May 2021 15:02:46 +0000 (17:02 +0200)
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)

gdb/ChangeLog
gdb/main.c

index f15bd050a174e666cdac8a1be2fa859f19428d82..6e09089d179004acf201542a3f187f2130b75358 100644 (file)
@@ -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
index d92aa02d83185512bd25d1150bae62c0387e4f20..5761ce2bdbef91bd5be974484d5d922485beafa3 100644 (file)
@@ -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
 };
 
This page took 0.026575 seconds and 4 git commands to generate.