1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-14 13:10:20 +02:00

*** empty log message ***

This commit is contained in:
Keisuke Nishida 2001-04-09 04:08:46 +00:00
parent 880ed584e8
commit f349065ed9
2 changed files with 3 additions and 1 deletions

View file

@ -70,7 +70,8 @@ VM_DEFINE_INSTRUCTION (drop, "drop", 0, 0, 0)
VM_DEFINE_INSTRUCTION (dup, "dup", 0, 0, 1)
{
PUSH (*sp);
SCM x = *sp;
PUSH (x);
NEXT;
}