This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: remove newline from error message


Obvious.

2002-07-17  Jim Blandy  <jimb@redhat.com>

	* macrocmd.c (info_macro_command): Remove newline from error
	message.

Index: gdb/macrocmd.c
===================================================================
RCS file: /cvs/src/src/gdb/macrocmd.c,v
retrieving revision 1.3
diff -c -r1.3 macrocmd.c
*** gdb/macrocmd.c	11 Jun 2002 20:04:59 -0000	1.3
--- gdb/macrocmd.c	17 Jul 2002 21:14:50 -0000
***************
*** 148,154 ****
  
    ms = default_macro_scope ();
    if (! ms)
!     error ("GDB has no preprocessor macro information for that code.\n");
  
    d = macro_lookup_definition (ms->file, ms->line, name);
    if (d)
--- 148,154 ----
  
    ms = default_macro_scope ();
    if (! ms)
!     error ("GDB has no preprocessor macro information for that code.");
  
    d = macro_lookup_definition (ms->file, ms->line, name);
    if (d)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]