diff options
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -254,19 +254,19 @@ static int history_size = DEFAULT_HISTSIZE; /* max # of lines in history file * static const struct dbg_option option_list[] = { {"history_size", &history_size, NULL, &set_history_size, - gettext_noop("set or show the number of lines to keep in history file.") }, + gettext_noop("set or show the number of lines to keep in history file") }, {"listsize", &list_size, NULL, &set_listsize, - gettext_noop("set or show the list command window size.") }, + gettext_noop("set or show the list command window size") }, {"outfile", NULL, &output_file, &set_gawk_output, - gettext_noop("set or show gawk output file.") }, + gettext_noop("set or show gawk output file") }, {"prompt", NULL, &dgawk_prompt, &set_prompt, - gettext_noop("set or show debugger prompt."), }, + gettext_noop("set or show debugger prompt"), }, {"save_history", &do_save_history, NULL, &set_save_history, - gettext_noop("(un)set or show saving of command history (value=on|off).") }, + gettext_noop("(un)set or show saving of command history (value=on|off)") }, {"save_options", &do_save_options, NULL, &set_save_options, - gettext_noop("(un)set or show saving of options (value=on|off).") }, + gettext_noop("(un)set or show saving of options (value=on|off)") }, {"trace", &do_trace, NULL, &set_trace, - gettext_noop("(un)set or show instruction tracing (value=on|off).") }, + gettext_noop("(un)set or show instruction tracing (value=on|off)") }, {0, NULL, NULL, NULL, 0}, }; @@ -355,7 +355,7 @@ if (--val) \ #define CHECK_PROG_RUNNING() \ do { \ if (! prog_running) { \ - d_error(_("program not running.")); \ + d_error(_("program not running")); \ return false; \ } \ } while (false) @@ -490,7 +490,7 @@ source_find(char *src) int errno_val = 0; if (src == NULL || *src == '\0') { - d_error(_("no current source file.")); + d_error(_("no current source file")); return NULL; } @@ -3031,7 +3031,7 @@ do_continue(CMDARG *arg, int cmd ATTRIBUTE_UNUSED) } b = find_breakpoint(stop.break_point); if (b == NULL) { - d_error(_("invalid breakpoint number %d."), stop.break_point); + d_error(_("invalid breakpoint number %d"), stop.break_point); return false; } b->flags |= BP_IGNORE; @@ -4864,7 +4864,7 @@ unserialize_list(int type) field_cnt++; if (field_cnt == MAX_FIELD) #ifdef GAWKDEBUG - fatal("Increase MAX_FIELD and recompile."); + fatal("Increase MAX_FIELD and recompile"); #else return; #endif |