1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-14 15:40:19 +02:00

remove the `late-bind' instruction

* doc/ref/vm.texi: Minor fixes.

* libguile/vm-i-loader.c: Remove the unused `late-bind' instruction.
This commit is contained in:
Andy Wingo 2008-12-19 11:50:43 +01:00
parent 090d51edb2
commit d22fc3e4af
2 changed files with 11 additions and 24 deletions

View file

@ -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"