2005-02-10 Andrew Cagney <cagney@gnu.org>

Mark up all error and warning messages.
	* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
	* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
	* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
	* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
	* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
	* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
	* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
	* event-top.c, exec.c, expprint.c, f-lang.c: Update.
	* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
	* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
	* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
	* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
	* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
	* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
	* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
	* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
	* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
	* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
	* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
	* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
	* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
	* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
	* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
	* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
	* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
	* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
	* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
	* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
	* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
	* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
	* remote-rdp.c, remote-sim.c, remote-st.c: Update.
	* remote-utils.c, remote-utils.h, remote.c: Update.
	* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
	* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
	* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
	* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
	* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
	* somread.c, somsolib.c, source.c, stabsread.c: Update.
	* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
	* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
	* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
	* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
	* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
	* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
	* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
	* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
	* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
	* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
	* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
	* tui/tui-win.c: Update.
This commit is contained in:
Andrew Cagney
2005-02-11 04:06:14 +00:00
parent ebdda33727
commit 8a3fe4f86c
185 changed files with 1919 additions and 1910 deletions

View File

@ -73,7 +73,7 @@ build_command_line (enum command_control_type type, char *args)
struct command_line *cmd;
if (args == NULL)
error ("if/while commands require arguments.\n");
error (_("if/while commands require arguments."));
cmd = (struct command_line *) xmalloc (sizeof (struct command_line));
cmd->next = NULL;
@ -105,7 +105,7 @@ get_command_line (enum command_control_type type, char *arg)
/* Read in the body of this command. */
if (recurse_read_control_structure (cmd) == invalid_control)
{
warning ("error reading in control structure\n");
warning (_("Error reading in control structure."));
do_cleanups (old_chain);
return NULL;
}
@ -263,7 +263,7 @@ execute_user_command (struct cmd_list_element *c, char *args)
return;
if (++user_call_depth > max_user_call_depth)
error ("Max user call depth exceeded -- command aborted\n");
error (_("Max user call depth exceeded -- command aborted."));
old_chain = make_cleanup (do_restore_user_call_depth, &user_call_depth);
@ -276,7 +276,7 @@ execute_user_command (struct cmd_list_element *c, char *args)
ret = execute_control_command (cmdlines);
if (ret != simple_control && ret != break_control)
{
warning ("Error in control structure.\n");
warning (_("Error in control structure."));
break;
}
cmdlines = cmdlines->next;
@ -424,7 +424,7 @@ execute_control_command (struct command_line *cmd)
}
default:
warning ("Invalid control type in command structure.");
warning (_("Invalid control type in command structure."));
break;
}
@ -512,7 +512,7 @@ setup_user_args (char *p)
if (arg_count >= MAXUSERARGS)
{
error ("user defined function may only have %d arguments.\n",
error (_("user defined function may only have %d arguments."),
MAXUSERARGS);
return old_chain;
}
@ -598,7 +598,7 @@ insert_args (char *line)
if (i >= user_args->count)
{
error ("Missing argument %d in user function.\n", i);
error (_("Missing argument %d in user function."), i);
return NULL;
}
len += user_args->a[i].len;
@ -679,7 +679,7 @@ read_next_line (struct command_line **command)
int i = 0;
if (control_level >= 254)
error ("Control nesting too deep!\n");
error (_("Control nesting too deep!"));
/* Set a prompt based on the nesting of the control commands. */
if (instream == stdin || (instream == 0 && deprecated_readline_hook != NULL))
@ -794,16 +794,10 @@ recurse_read_control_structure (struct command_line *current_cmd)
/* Sanity checks. */
if (current_cmd->control_type == simple_control)
{
error ("Recursed on a simple control type\n");
return invalid_control;
}
error (_("Recursed on a simple control type."));
if (current_body > current_cmd->body_count)
{
error ("Allocated body is smaller than this command type needs\n");
return invalid_control;
}
error (_("Allocated body is smaller than this command type needs."));
/* Read lines from the input stream and build control structures. */
while (1)
@ -1058,7 +1052,7 @@ validate_comname (char *comname)
while (*p)
{
if (!isalnum (*p) && *p != '-' && *p != '_')
error ("Junk in argument list: \"%s\"", p);
error (_("Junk in argument list: \"%s\""), p);
p++;
}
}
@ -1107,7 +1101,7 @@ define_command (char *comname, int from_tty)
else
q = query ("Really redefine built-in command \"%s\"? ", c->name);
if (!q)
error ("Command \"%s\" not redefined.", c->name);
error (_("Command \"%s\" not redefined."), c->name);
}
/* If this new command is a hook, then mark the command which it
@ -1134,10 +1128,10 @@ define_command (char *comname, int from_tty)
hookc = 0;
if (!hookc)
{
warning ("Your new `%s' command does not hook any existing command.",
warning (_("Your new `%s' command does not hook any existing command."),
comname);
if (!query ("Proceed? "))
error ("Not confirmed.");
error (_("Not confirmed."));
}
}
@ -1194,7 +1188,7 @@ document_command (char *comname, int from_tty)
c = lookup_cmd (&tem, cmdlist, "", 0, 1);
if (c->class != class_user)
error ("Command \"%s\" is built-in.", comname);
error (_("Command \"%s\" is built-in."), comname);
sprintf (tmpbuf, "Type documentation for \"%s\".", comname);
doclines = read_command_lines (tmpbuf, from_tty);