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

Keith Seitz keiths@cygnus.com
Thu Jun 7 13:20:00 GMT 2001


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});




More information about the Gdb-patches mailing list