autoload-trace.red 513 B

123456789101112131415161718192021222324
  1. %
  2. % AUTOLOAD-TRACE.RED - Autoloading stubs for DEBUG
  3. %
  4. % Author: Eric Benson
  5. % Symbolic Computation Group
  6. % Computer Science Dept.
  7. % University of Utah
  8. % Date: 24 September 1982
  9. % Copyright (c) 1982 University of Utah
  10. %
  11. % This file is used instead of MINI-TRACE.RED for those systems which
  12. % can load files
  13. lisp macro procedure TR U;
  14. << load Debug;
  15. Apply('TR, list U) >>;
  16. lisp macro procedure TRST U;
  17. << load Debug;
  18. Apply('TRST, list U) >>;
  19. END;