We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e86dded commit 83b684fCopy full SHA for 83b684f
lisp/c/sysfunc.c
@@ -803,25 +803,6 @@ pointer *argv;
803
ff=ff->c.ffp.next;}
804
return(stacknlist(ctx,i));}
805
806
-pointer LISTFUNCTIONBINDINGS(ctx,n,argv)
807
-register context *ctx;
808
-int n;
809
-pointer *argv;
810
-{ pointer ff;
811
- int i=0;
812
- if (n==0) {
813
- ff=ctx->fletfp;}
814
- if (n==1) {
815
- if (isfletframe(argv[0])) ff=argv[0];
816
- else if (isint(argv[0]) && intval(argv[0])==0) return(NIL);
817
- else error(E_NOFLETFRAME);}
818
- while (ff) {
819
- vpush(cons(ctx,ff->c.ffp.name,ff->c.ffp.fclosure));
820
- i++;
821
- if (ff==ff->c.ffp.next) break;
822
- ff=ff->c.ffp.next;}
823
- return(stacknlist(ctx,i));}
824
-
825
pointer LISTSPECIALBINDINGS(ctx,n,argv)
826
register context *ctx;
827
int n;
0 commit comments