aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2001-06-07 20:18:45 +0000
committerKeith Seitz <keiths@redhat.com>2001-06-07 20:18:45 +0000
commit8c6ee7152512a0da8c85f13369ee7d65c66c211b (patch)
treea3f3bee471a43332480860fc28f39103a5d1675c /gdb
parent9e79109904e014c386547a53212691590ce51e6a (diff)
downloadgdb-8c6ee7152512a0da8c85f13369ee7d65c66c211b.zip
gdb-8c6ee7152512a0da8c85f13369ee7d65c66c211b.tar.gz
gdb-8c6ee7152512a0da8c85f13369ee7d65c66c211b.tar.bz2
* gdb-events.sh: Fix quote escaping which was obsoleted
by last patch.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rwxr-xr-xgdb/gdb-events.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 7434b85..c68caa9 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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
diff --git a/gdb/gdb-events.sh b/gdb/gdb-events.sh
index d84a375..d4713ec 100755
--- a/gdb/gdb-events.sh
+++ b/gdb/gdb-events.sh
@@ -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});