summaryrefslogtreecommitdiff
path: root/libguile/gsubr.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2013-11-19 21:27:38 +0100
committerAndy Wingo <wingo@pobox.com>2013-11-19 21:27:38 +0100
commit74870c0d2f2cfb2a15ab732c0cc0378bbf268682 (patch)
treeba554c6b39dda24c4166aa22f80cdb6ab2d9b30f /libguile/gsubr.c
parentf42cfbf0b72da57a1dfae29d2525ef71abe1bc9d (diff)
downloadguile-74870c0d2f2cfb2a15ab732c0cc0378bbf268682.tar.gz
Fix gsubr comment
* libguile/gsubr.c: Update comment to excise RTL.
Diffstat (limited to 'libguile/gsubr.c')
-rw-r--r--libguile/gsubr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/gsubr.c b/libguile/gsubr.c
index c6fce363d..49edd3c5c 100644
--- a/libguile/gsubr.c
+++ b/libguile/gsubr.c
@@ -253,9 +253,9 @@ create_subr (int define, const char *name,
return ret;
}
-/* Given an RTL primitive, determine its minimum arity. This is
- possible because each RTL primitive is 4 32-bit words long, and they
- are laid out contiguously in an ordered pattern. */
+/* Given a program that is a primitive, determine its minimum arity.
+ This is possible because each primitive's code is 4 32-bit words
+ long, and they are laid out contiguously in an ordered pattern. */
int
scm_i_primitive_arity (SCM prim, int *req, int *opt, int *rest)
{