shithub: femtolisp

Download patch

ref: 252c5221c6eb32fa05b69f8683b01b5c9f832bcb
parent: 1dd15a7d2be65f89e7d012c5c77f4c7d2d71227b
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue Nov 26 14:32:10 EST 2024

remove the failing (and no longer needed) assert

--- a/flisp.c
+++ b/flisp.c
@@ -1107,7 +1107,6 @@
 			NEXT_OP;
 
 		OP(OP_LOADA)
-			assert(nargs > 0);
 			i = *ip++;
 			v = FL(stack)[bp+i];
 			PUSH(v);