* macrocmd.c (info_macro_command): Remove newline from error
authorJim Blandy <jimb@codesourcery.com>
Wed, 17 Jul 2002 21:16:33 +0000 (21:16 +0000)
committerJim Blandy <jimb@codesourcery.com>
Wed, 17 Jul 2002 21:16:33 +0000 (21:16 +0000)
message.

gdb/ChangeLog
gdb/macrocmd.c

index 1385249..b188507 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-17  Jim Blandy  <jimb@redhat.com>
+
+       * macrocmd.c (info_macro_command): Remove newline from error
+       message.
+
 Wed Jul 17 19:36:38 2002  J"orn Rennecke <joern.rennecke@superh.com>
 
        * sh-tdep.c (sh_dsp_register_sim_regno): New function.
index 40b3154..02f44fc 100644 (file)
@@ -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)