bug.sl 646 B

123456789101112131415161718192021222324252627
  1. % BUG.SL - Send bug reports
  2. %
  3. % Author: Martin Griss and Eric Benson
  4. % Symbolic Computation Group
  5. % Computer Science Dept.
  6. % University of Utah
  7. % Date: 11 December 1981
  8. % Copyright (c) 1981 University of Utah
  9. %
  10. % <PERDUE.PSL>BUG.SL.2, 7-Jan-83 16:52:07, Edit by PERDUE
  11. % Changed to LISP syntax, added bug-mail-to variable.
  12. % Each site may set bug-mail-to as desired.
  13. (imports '(exec))
  14. (fluid '(bug-mail-to))
  15. (cond ((null bug-mail-to) (setq bug-mail-to "")))
  16. (defun bug ()
  17. (printf "*** PSL Bug reporter, ^N to abort%n")
  18. (putrescan (bldmsg "mail %w%n" bug-mail-to))
  19. (mm)
  20. (terpri)
  21. t)