summaryrefslogtreecommitdiff
path: root/libguile/vm-i-loader.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2008-12-19 11:50:43 +0100
committerAndy Wingo <wingo@pobox.com>2008-12-19 11:50:43 +0100
commitd22fc3e4af63e6764affcd8000ef3fa35159e066 (patch)
tree34ec9e6354acf161d32fd80a48a5955b0c23f034 /libguile/vm-i-loader.c
parent090d51edb2184b3292f812a2ee8b47bb3ebf161c (diff)
downloadguile-d22fc3e4af63e6764affcd8000ef3fa35159e066.tar.gz
remove the `late-bind' instruction
* doc/ref/vm.texi: Minor fixes. * libguile/vm-i-loader.c: Remove the unused `late-bind' instruction.
Diffstat (limited to 'libguile/vm-i-loader.c')
-rw-r--r--libguile/vm-i-loader.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libguile/vm-i-loader.c b/libguile/vm-i-loader.c
index 778163f0f..71f53abf5 100644
--- a/libguile/vm-i-loader.c
+++ b/libguile/vm-i-loader.c
@@ -208,20 +208,6 @@ VM_DEFINE_LOADER (define, "define")
NEXT;
}
-VM_DEFINE_LOADER (late_bind, "late-bind")
-{
- SCM sym;
- size_t len;
-
- FETCH_LENGTH (len);
- SYNC_REGISTER ();
- sym = scm_from_locale_symboln ((char *)ip, len);
- ip += len;
-
- PUSH (sym);
- NEXT;
-}
-
/*
Local Variables:
c-file-style: "gnu"