home *** CD-ROM | disk | FTP | other *** search
- /*
- (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;
- }
-