2012-01-23 Pedro Alves <palves@redhat.com>
authorPedro Alves <palves@redhat.com>
Mon, 23 Jan 2012 17:12:30 +0000 (17:12 +0000)
committerPedro Alves <palves@redhat.com>
Mon, 23 Jan 2012 17:12:30 +0000 (17:12 +0000)
* top.c (caution): Rename to ...
(confirm): ... this.
(show_caution): Rename to ...
(show_confirm): ... this.
(quit_cover): Adjust.
(init_main): Adjust.
* top.h (caution): Rename to ...
(confirm): ... this.
* utils.c (internal_vproblem, defaulted_query): Adjust.

gdb/ChangeLog
gdb/top.c
gdb/top.h
gdb/utils.c

index 9c4f933ec0e263509876b8042a91efe58651b1c5..3bbb64916720d1853d064b532d6050ffc77550f8 100644 (file)
@@ -1,3 +1,15 @@
+2012-01-23  Pedro Alves  <palves@redhat.com>
+
+       * top.c (caution): Rename to ...
+       (confirm): ... this.
+       (show_caution): Rename to ...
+       (show_confirm): ... this.
+       (quit_cover): Adjust.
+       (init_main): Adjust.
+       * top.h (caution): Rename to ...
+       (confirm): ... this.
+       * utils.c (internal_vproblem, defaulted_query): Adjust.
+
 2012-01-23  Pedro Alves  <palves@redhat.com>
 
        * top.c (caution): Update comment.
index 346d73b4e02f726eaffc043d1a968c19838c74ad..e41f56cf3635983a43cd2ee81b571d5ca0b5f2c2 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -101,10 +101,10 @@ extern char lang_frame_mismatch_warn[];           /* language.c */
 /* Flag for whether we want to confirm potentially dangerous
    operations.  Default is yes.  */
 
-int caution = 1;
+int confirm = 1;
 
 static void
-show_caution (struct ui_file *file, int from_tty,
+show_confirm (struct ui_file *file, int from_tty,
              struct cmd_list_element *c, const char *value)
 {
   fprintf_filtered (file, _("Whether to confirm potentially "
@@ -291,9 +291,9 @@ void (*deprecated_context_hook) (int id);
 /* static */ void
 quit_cover (void)
 {
-  caution = 0;                 /* Throw caution to the wind -- we're exiting.
-                                  This prevents asking the user dumb 
-                                  questions.  */
+  /* Stop asking user for confirmation --- we're exiting.  This
+     prevents asking the user dumb questions.  */
+  confirm = 0;
   quit_command ((char *) 0, 0);
 }
 #endif /* defined SIGHUP */
@@ -1635,11 +1635,11 @@ Show the filename in which to record the command history"), _("\
                            show_history_filename,
                            &sethistlist, &showhistlist);
 
-  add_setshow_boolean_cmd ("confirm", class_support, &caution, _("\
+  add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
 Set whether to confirm potentially dangerous operations."), _("\
 Show whether to confirm potentially dangerous operations."), NULL,
                           NULL,
-                          show_caution,
+                          show_confirm,
                           &setlist, &showlist);
 
   add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
index 55ce104b3d327052c6b21f354f3cdba75762b9f4..6f7423321398e02447a83f812e8e9fee37b66f0a 100644 (file)
--- a/gdb/top.h
+++ b/gdb/top.h
@@ -26,7 +26,7 @@ extern char *saved_command_line;
 extern int saved_command_line_size;
 extern FILE *instream;
 extern int in_user_command;
-extern int caution;
+extern int confirm;
 extern char gdb_dirbuf[1024];
 extern int inhibit_gdbinit;
 extern int epoch_interface;
index 4863e41d6df82d5f1bfecfd073c359fff4c82ba7..39ec2541155a6b7f75121c3787bf528da3a1415f 100644 (file)
@@ -970,7 +970,7 @@ internal_vproblem (struct internal_problem *problem,
       /* Default (yes/batch case) is to quit GDB.  When in batch mode
         this lessens the likelihood of GDB going into an infinite
         loop.  */
-      if (caution == 0)
+      if (!confirm)
         {
           /* Emit the message and quit.  */
           fputs_unfiltered (reason, gdb_stderr);
@@ -1384,7 +1384,7 @@ defaulted_query (const char *ctlstr, const char defchar, va_list args)
 
   /* Automatically answer the default value if the user did not want
      prompts or the command was issued with the server prefix.  */
-  if (! caution || server_command)
+  if (!confirm || server_command)
     return def_value;
 
   /* If input isn't coming from the user directly, just say what
This page took 0.029735 seconds and 4 git commands to generate.