stubs5.red 614 B

123456789101112131415161718192021222324252627282930313233343536
  1. % STUBS5.RED - Stubs for TEST5 and Above
  2. Fluid '(UndefnCode!* UndefnNarg!*);
  3. on syslisp;
  4. syslsp procedure UndefinedFunctionAuxAux;
  5. % Interim version of UndefinedFunctionAux;
  6. Begin scalar FnId,Nargs;
  7. Nargs:=LispVar UndefnNarg!*;
  8. FnId := MkID (LispVar UndefnCode!*);
  9. Prin2 "Undefined Function ";
  10. Prin1 FnId;
  11. Prin2 " called with ";
  12. Prin2 Nargs;
  13. prin2T " args from compiled code";
  14. Quit;
  15. End;
  16. % Some SYSLISP tools for debugging:
  17. syslsp procedure INF x;
  18. Inf x;
  19. syslsp procedure TAG x;
  20. TAG x;
  21. syslsp procedure MKITEM(x,y);
  22. MkItem(X,y);
  23. off syslisp;
  24. End;