* gdb-events.sh: Fix quote escaping which was obsoleted
authorKeith Seitz <keiths@redhat.com>
Thu, 7 Jun 2001 20:18:45 +0000 (20:18 +0000)
committerKeith Seitz <keiths@redhat.com>
Thu, 7 Jun 2001 20:18:45 +0000 (20:18 +0000)
by last patch.

gdb/ChangeLog
gdb/gdb-events.sh

index 7434b85912fa7533a4a91d43c953f66a6e3697b6..c68caa96c3cb51a274d207f0845f41ebdcc01127 100644 (file)
@@ -1,3 +1,8 @@
+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
index d84a375b34e4461ae7ff62770271dc6fced7b88a..d4713eccb5b6bde911f017287876558e5494ae95 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});
This page took 0.027851 seconds and 4 git commands to generate.