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]

[PATCH] Fix quoting problem in gdb-events.sh


HI,

My bad: I stopped using echo but neglected to undo the quote escaping...

I'm checking this in as obvious.

Keith

ChangeLog
2001-06-07  Keith Seitz  <keiths@redhat.com>

	* gdb-events.sh: Fix quote escaping which was obsoleted
	by last patch.

Patch
Index: gdb-events.sh
===================================================================
RCS file: /cvs/src/src/gdb/gdb-events.sh,v
retrieving revision 1.8
diff -u -p -r1.8 gdb-events.sh
--- gdb-events.sh	2001/06/07 19:40:55	1.8
+++ gdb-events.sh	2001/06/07 20:17:44
@@ -355,7 +355,7 @@ void
 ${function}_event (${formal})
 {
   if (gdb_events_debug)
-    fprintf_unfiltered (gdb_stdlog, \"${function}_event\n\");
+    fprintf_unfiltered (gdb_stdlog, "${function}_event\n");
   if (!current_event_hooks->${function})
     return;
   current_event_hooks->${function} (${actual});



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