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 | b477c81382c4bbdec7f3efb6db7f3a9d3800d7b7 (patch) | |
tree | b9a9fb5b7288cdb3c0f4668bc7ea12b757531407 /gdb/macrocmd.c | |
parent | 4fefc322fc1c4ad492455a834a2849d8f0764e3e (diff) | |
download | gdb-b477c81382c4bbdec7f3efb6db7f3a9d3800d7b7.tar.gz |
* 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 40b31541f90..02f44fce4cd 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) |