ftp.nice.ch/pub/next/developer/languages/lisp/AKCL.1.599.s.tar.gz#/akcl-1-599/c/bds.c

This is bds.c in view mode; [Download] [Up]

/*
(c) Copyright Taiichi Yuasa and Masami Hagiya, 1984.  All rights reserved.
Copying of this file is authorized to users who have executed the true and
proper "License Agreement for Kyoto Common LISP" with SIGLISP.
*/

/*
	bds.c

	bind stack routines
*/

#include  "include.h"

bds_unwind(new_bds_top)
bds_ptr new_bds_top;
{
	for (;  bds_top > new_bds_top;  bds_top--)
		(bds_top->bds_sym)->s.s_dbind = bds_top->bds_val;
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.