+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.
/* 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 "
/* 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 */
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, _("\
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;
/* 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);
/* 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