aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2014-03-02 10:30:46 -0800
committerDoug Evans <xdje42@gmail.com>2014-03-02 10:30:46 -0800
commit35e6a7111ee1b1f36e29671eb0f1f25c6c8f4c5b (patch)
tree28a2d541c2640a386ca51d8a6f92e150e7c1a62d
parent667f9d0bddf4f0fd32702d7fd67454191a909911 (diff)
downloadfsf-binutils-gdb-35e6a7111ee1b1f36e29671eb0f1f25c6c8f4c5b.zip
fsf-binutils-gdb-35e6a7111ee1b1f36e29671eb0f1f25c6c8f4c5b.tar.gz
fsf-binutils-gdb-35e6a7111ee1b1f36e29671eb0f1f25c6c8f4c5b.tar.bz2
guile/scm-objfile.c (ofscm_mark_objfile_smob): Fix typo in comment.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/guile/scm-objfile.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 08dd1c3..eb2565e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2014-03-02 Doug Evans <xdje42@gmail.com>
+ * guile/scm-objfile.c (ofscm_mark_objfile_smob): Fix typo in comment.
+
+2014-03-02 Doug Evans <xdje42@gmail.com>
+
* guile/lib/gdb/printing.scm (append-pretty-printer!): Fix thinko.
2014-03-01 Mark Kettenis <kettenis@gnu.org>
diff --git a/gdb/guile/scm-objfile.c b/gdb/guile/scm-objfile.c
index 9a20dc7..70f7e33 100644
--- a/gdb/guile/scm-objfile.c
+++ b/gdb/guile/scm-objfile.c
@@ -72,7 +72,7 @@ ofscm_mark_objfile_smob (SCM self)
scm_gc_mark (o_smob->pretty_printers);
/* We don't mark containing_scm here. It is just a backlink to our
- container, and is gc'protected until the objfile is deleted. */
+ container, and is gc-protected until the objfile is deleted. */
/* Do this last. */
return gdbscm_mark_gsmob (&o_smob->base);