home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / RiscPc / programmation / scm4e2.arc / !Scm / slib / trnscrpt < prev    next >
Text File  |  1994-05-23  |  2KB  |  75 lines

  1. ; "trnscrpt.scm", transcript functions for Scheme.
  2. ; Copyright (c) 1992, 1993 Aubrey Jaffer
  3. ;
  4. ;Permission to copy this software, to redistribute it, and to use it
  5. ;for any purpose is granted, subject to the following restrictions and
  6. ;understandings.
  7. ;
  8. ;1.  Any copy made of this software must include this copyright notice
  9. ;in full.
  10. ;
  11. ;2.  I have made no warrantee or representation that the operation of
  12. ;this software will be error-free, and I am under no obligation to
  13. ;provide any services, by way of maintenance, update, or otherwise.
  14. ;
  15. ;3.  In conjunction with products arising from the use of this
  16. ;material, there shall be no use of my name in any advertising,
  17. ;promotional, or sales literature without prior written consent in
  18. ;each case.
  19.  
  20. (define transcript:port #f)
  21.  
  22. (define (transcript-on filename)
  23.   (set! transcript:port (open-output-file filename)))
  24.  
  25. (define (transcript-off)
  26.   (if (output-port? transcript:port)
  27.       (close-output-port transcript:port))
  28.   (set! transcript:port #f))
  29.  
  30. (define read-char
  31.   (let ((read-char read-char) (write-char write-char))
  32.     (lambda opt
  33.       (let ((ans (apply read-char opt)))
  34.     (if (output-port? transcript:port)
  35.         (write-char ans transcript:port))
  36.     ans))))
  37.  
  38. (define read
  39.   (let ((read read) (write write) (newline newline))
  40.     (lambda opt
  41.       (let ((ans (apply read opt)))
  42.     (cond ((output-port? transcript:port)
  43.            (write ans transcript:port)
  44.            (if (eqv? #\newline (apply peek-char opt))
  45.            (newline transcript:port))))
  46.     ans))))
  47.  
  48. (define write-char
  49.   (let ((write-char write-char))
  50.     (lambda (obj . opt)
  51.       (apply write-char obj opt)
  52.       (if (output-port? transcript:port)
  53.       (write-char obj transcript:port)))))
  54.  
  55. (define write
  56.   (let ((write write))
  57.     (lambda (obj . opt)
  58.       (apply write obj opt)
  59.       (if (output-port? transcript:port)
  60.       (write obj transcript:port)))))
  61.  
  62. (define display
  63.   (let ((display display))
  64.     (lambda (obj . opt)
  65.       (apply display obj opt)
  66.       (if (output-port? transcript:port)
  67.       (display obj transcript:port)))))
  68.  
  69. (define newline
  70.   (let ((newline newline))
  71.     (lambda opt
  72.       (apply newline opt)
  73.       (if (output-port? transcript:port)
  74.       (newline transcript:port)))))
  75.