diff options
author | Jim Blandy <jimb@codesourcery.com> | 2002-07-17 21:16:33 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2002-07-17 21:16:33 +0000 |
commit | 233282cd3ee3ffa29f799465620d1de09fb64f8e (patch) | |
tree | aaffba067dd7bc8f9486be5e0e243f3afac4a484 /gdb/macrocmd.c | |
parent | 2f14585c74601e3da1764d753455e894455b063c (diff) | |
download | gdb-233282cd3ee3ffa29f799465620d1de09fb64f8e.zip gdb-233282cd3ee3ffa29f799465620d1de09fb64f8e.tar.gz gdb-233282cd3ee3ffa29f799465620d1de09fb64f8e.tar.bz2 |
* macrocmd.c (info_macro_command): Remove newline from error
message.
Diffstat (limited to 'gdb/macrocmd.c')
-rw-r--r-- | gdb/macrocmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c index 40b3154..02f44fc 100644 --- a/gdb/macrocmd.c +++ b/gdb/macrocmd.c @@ -148,7 +148,7 @@ info_macro_command (char *name, int from_tty) ms = default_macro_scope (); if (! ms) - error ("GDB has no preprocessor macro information for that code.\n"); + error ("GDB has no preprocessor macro information for that code."); d = macro_lookup_definition (ms->file, ms->line, name); if (d) |