OSDN Git Service

* gdb-events.sh: Fix quote escaping which was obsoleted
authorkseitz <kseitz>
Thu, 7 Jun 2001 20:18:44 +0000 (20:18 +0000)
committerkseitz <kseitz>
Thu, 7 Jun 2001 20:18:44 +0000 (20:18 +0000)
by last patch.

gdb/ChangeLog
gdb/gdb-events.sh

index 7434b85..c68caa9 100644 (file)
@@ -1,5 +1,10 @@
 2001-06-07  Keith Seitz  <keiths@redhat.com>
 
+       * gdb-events.sh: Fix quote escaping which was obsoleted
+       by last patch.
+
+2001-06-07  Keith Seitz  <keiths@redhat.com>
+
        * gdb-events.sh: Make if statements and tests
        a little more portable.
        Don't use shell's echo command to put strings containing
index d84a375..d4713ec 100755 (executable)
@@ -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});