*** empty log message ***
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Fri, 23 Jan 1987 00:22:29 +0000 (00:22 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Fri, 23 Jan 1987 00:22:29 +0000 (00:22 +0000)
45 files changed:
v7/src/runtime/advice.scm
v7/src/runtime/bitstr.scm
v7/src/runtime/boot.scm
v7/src/runtime/char.scm
v7/src/runtime/datime.scm
v7/src/runtime/debug.scm
v7/src/runtime/emacs.scm
v7/src/runtime/equals.scm
v7/src/runtime/error.scm
v7/src/runtime/events.scm
v7/src/runtime/format.scm
v7/src/runtime/gc.scm
v7/src/runtime/gcstat.scm
v7/src/runtime/gensym.scm
v7/src/runtime/hash.scm
v7/src/runtime/histry.scm
v7/src/runtime/input.scm
v7/src/runtime/intrpt.scm
v7/src/runtime/io.scm
v7/src/runtime/lambda.scm
v7/src/runtime/list.scm
v7/src/runtime/msort.scm
v7/src/runtime/numpar.scm
v7/src/runtime/output.scm
v7/src/runtime/parse.scm
v7/src/runtime/pathnm.scm
v7/src/runtime/pp.scm
v7/src/runtime/qsort.scm
v7/src/runtime/rep.scm
v7/src/runtime/scan.scm
v7/src/runtime/scode.scm
v7/src/runtime/scomb.scm
v7/src/runtime/sdata.scm
v7/src/runtime/sfile.scm
v7/src/runtime/stream.scm
v7/src/runtime/string.scm
v7/src/runtime/syntax.scm
v7/src/runtime/sysclk.scm
v7/src/runtime/system.scm
v7/src/runtime/unpars.scm
v7/src/runtime/unsyn.scm
v7/src/runtime/utabs.scm
v7/src/runtime/vector.scm
v7/src/runtime/where.scm
v7/src/runtime/wind.scm

index 127025dcbdb49cfa6129e98c2f8944622ff8e841..cde21047a00b5880de37a6996ec0d6f0eb520d70 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/advice.scm,v 13.41 1987/01/23 00:07:35 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 
 (define *args*   (access *args* advice-package))
 (define *proc*   (access *proc* advice-package))
+(define *result* (access *result* advice-package))
 (define *result* (access *result* advice-package))
\ No newline at end of file
index fb3127737e94799bbae8a103af9ceaf38b170948..932b9ecdc9be465e41488b3f7fe140579fae472d 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/bitstr.scm,v 13.41 1987/01/23 00:09:36 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -80,4 +82,5 @@
        (nbits (bit-string-length bit-string)))
     (if (bit-string-ref bit-string (-1+ nbits))        ;Sign bit.
        (- unsigned-result (expt 2 nbits))
+       unsigned-result)))
        unsigned-result)))
\ No newline at end of file
index ba1bd1798b38600ad6448a6422a740c23ba06cc7..557d7a38c05d867d5b4ace659f29dd5d91d2de6b 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/boot.scm,v 13.41 1987/01/23 00:09:44 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 
 (define (boolean? object)
   (or (eq? object #F)
+      (eq? object #T)))
       (eq? object #T)))
\ No newline at end of file
index cf345fb7c854f6c1e297893e74590a2656ed8eeb..8aa052e70eca120eebeff6a797cd16503fcd4336 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/char.scm,v 13.41 1987/01/23 00:09:52 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 (define char-alphanumeric? (char-set-predicate char-set:alphanumeric))
 (define char-graphic? (char-set-predicate char-set:graphic))
 (define char-standard? (char-set-predicate char-set:standard))
+(define char-whitespace? (char-set-predicate char-set:whitespace))
index 87d4d09a4e083b7f4c91bf849d89ddfa5e222219..5773e65874d3e44e34122f1b4e52084e533c2213 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/datime.scm,v 13.41 1987/01/23 00:11:08 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
                     (if (< hour 12) "AM" "PM"))
       "Time primitives not installed")))
 
+)
index a8ff6b61fd65c4a829ea62dceb56fd7195587b73..994400635fb2ad1f7c133e448b5f54924a8c63b7 100644 (file)
@@ -1,5 +1,7 @@
 ;;; -*-Scheme-*-
 ;;;
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/debug.scm,v 13.41 1987/01/23 00:11:14 jinx Exp $
+;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
@@ -37,8 +39,6 @@
 
 ;;;; Debugger
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/debug.scm,v 13.40 1987/01/21 21:37:09 jinx Exp $
-
 (in-package debugger-package
 (declare (usual-integrations))
 \f
               lambda-tag:make-environment
               lambda-tag:make-package)))
     (named-lambda (special-name? symbol)
+      (memq symbol the-special-names))))
       (memq symbol the-special-names))))
\ No newline at end of file
index ec6fb89327c12955565929bd3ce585b76fa567ca..efeb59ad4e960b5d1d1dc04331b58dcad7db30be 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/emacs.scm,v 13.41 1987/01/23 00:11:34 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 (install!)
 
 ;;; end EMACS-INTERFACE-PACKAGE
+))
 ))
\ No newline at end of file
index e305ae21abc4c51eea038e77ece1ed39838ba268..872c8ee32bcfdb0f10b5dab057165993ffcdde0d 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/equals.scm,v 13.41 1987/01/23 00:11:42 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -37,8 +39,6 @@
 
 ;;;; Equality
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/equals.scm,v 13.40 1987/01/21 21:37:25 jinx Exp $
-
 (declare (usual-integrations))
 \f
 (let-syntax ((type?
@@ -86,3 +86,4 @@
                  (bit-string=? x y))
                 (else false)))))
 
+)
index 84e965a4f9f6dc9dbeb9b705b90e6528b431c64c..96887dce81829762415c2b8617a107256916caf5 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/error.scm,v 13.41 1987/01/23 00:11:50 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -468,4 +470,5 @@ using the current read-eval-print environment."))
   identity-procedure)
 
 ;;; end ERROR-SYSTEM package.
+))
 ))
\ No newline at end of file
index 9623a098cf7580fdbeb285a154c361f7900adfdc..755652b0f834f26d021827bf744f32d321f7f648 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/events.scm,v 13.41 1987/01/23 00:12:11 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -95,4 +97,5 @@
        (make-receiver-modifier 'REMOVE-EVENT-RECEIVER!
          delq!))
 
+)
 )
\ No newline at end of file
index 1efb21d49b7d06440c9784c3fad23e5fb84a2bde..e1fb1057f7cd1f2a92e7beb0c28b8a45c075093b 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/format.scm,v 13.41 1987/01/23 00:12:19 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 (add-dispatcher! #\C (format-wrapper format-code))
 
 ;;; end LET.
+)
 )
\ No newline at end of file
index 4b8ffce1ed02fbae74ad60043c6fa591a05b1f1b..5ee0115d71da42803565a1c809a561a046e6622b 100644 (file)
@@ -1,5 +1,7 @@
 ;;; -*-Scheme-*-
 ;;;
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/gc.scm,v 13.41 1987/01/23 00:13:25 jinx Exp $
+;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
@@ -37,8 +39,6 @@
 
 ;;;; Garbage Collector
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/gc.scm,v 13.40 1987/01/21 21:38:21 jinx Exp $
-
 (declare (usual-integrations)
         (compilable-primitive-functions
          garbage-collect primitive-purify primitive-impurify primitive-fasdump
        ie)))))
 
 ;;; end GARBAGE-COLLECTOR-PACKAGE.
+))
index 19339d4f28bc4c89306aeecc981393e47de36167..520c8477591177fee4a60055c29438fecd09f05c 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/gcstat.scm,v 13.41 1987/01/23 00:13:34 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
             (write-string "%) free: ") (write heap-left)))
         (vector->list statistic)))
 
+)
 )
\ No newline at end of file
index dde16adb523cbdda5a1b93f2bc656c3585742492..a4ca4f2d6cc9bb9aa562f7d51de4c8b4fce8865a 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1984 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/gensym.scm,v 13.41 1987/01/23 00:13:48 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -66,3 +68,4 @@
                 (error "Bad argument: GENERATE-UNINTERNED-SYMBOL"
                        argument))))
       (string->uninterned-symbol
+       (string-append name-prefix (write-to-string (get-number)))))))
index af77b13beb598d5c607cdc5f72424d77c144dff3..90dfaf6bb521acaf657d5603a238c463c8e3c205 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/hash.scm,v 13.41 1987/01/23 00:14:04 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
                         (loop (cdr rest)))))
                  (else (loop (cdr rest))))))))
 
+)
index 77a96e6dc6caf6964310b67baee23a78230f13a9..8be8a314be53c4fa82439b33d6d00bd28c39c23d 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/histry.scm,v 13.41 1987/01/23 00:14:15 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 \f
 ;;; end HISTORY-PACKAGE.
 ))
+
 (the-environment)))
\ No newline at end of file
index 1002ae865d55898dd94c6569c134c60122471ea5..5927db66e535faac93ebc2d5c84b035aa919e8b0 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/input.scm,v 13.41 1987/01/23 00:14:34 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
     (named-lambda (transcript-off)
       (if (not (photo-close))
          (error "Transcript file already closed: TRANSCRIPT-OFF"))
+      *the-non-printing-object*)))
       *the-non-printing-object*)))
\ No newline at end of file
index fcac0b1cbc9b8fffd2b70914ccdd6f4cc738d2f6..88173cda509b3aa36cabe0c7138baf33a6b5904a 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/intrpt.scm,v 13.41 1987/01/23 00:14:50 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
                        (vector-ref interrupt-vector CHARACTER-SLOT)))))))
 
 ;;; end INTERRUPT-SYSTEM package.
+))
 (the-environment)))
\ No newline at end of file
index f401a1dcba6d43c5830e98e3b6125629b0e9939a..2e660e4924fe89309f7cafee8fad11b59091498f 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/io.scm,v 13.41 1987/01/23 00:15:03 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 
 ((access setup-files-vector primitive-io))
 (add-gc-daemon! (make-primitive-procedure 'CLOSE-LOST-OPEN-FILES))
+
 (add-gc-daemon! (access close-lost-open-files-daemon primitive-io))
\ No newline at end of file
index 1afc10fa62ea1f05fb00e35d4d4f74acbb6bbcf7..4f159b54e04188ce13dbfb828cef09d4d43d20e5 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/lambda.scm,v 13.41 1987/01/23 00:15:18 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
                        required
                        optional
                        (if (null? rest) rest (car rest))
+                       body))))))
                        body))))))
\ No newline at end of file
index 0c3c4136f835d0e9552bb073ab3f96aeba7bf32e..94fb4194ad2be2d34699a1287eaf7b9aadb250e9 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/list.scm,v 13.41 1987/01/23 00:15:33 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -37,8 +39,6 @@
 
 ;;;; List Operations
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/list.scm,v 13.40 1987/01/21 21:39:50 jinx Exp $
-
 (declare (usual-integrations))
 \f
 ;;; This IN-PACKAGE is just a kludge to prevent the definitions of the
          (begin (loop l)
                 l)
          '())
+      (error "EXCEPT-LAST-PAIR!: Argument not a list" l)))
       (error "EXCEPT-LAST-PAIR!: Argument not a list" l)))
\ No newline at end of file
index 01c1523ee73844e7076143618556f315efde0bda..a14d3e95adfd7723cd3cfe5b1c97c34615d2a073 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/msort.scm,v 13.41 1987/01/23 00:15:59 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -97,3 +99,4 @@
   (let ((size (vector-length vector)))
     (do! vector (vector-cons size '()) 0 size)
     vector))
+|#
index 6fdc808738d528499333156a01cdff6f45b0f6c4..f70ce5cad6d091f8cefb46e4602345a6f65d473b 100644 (file)
@@ -1,5 +1,7 @@
 ;;; -*-Scheme-*-
 ;;;
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/numpar.scm,v 13.41 1987/01/23 00:16:30 jinx Exp $
+;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
@@ -37,8 +39,6 @@
 
 ;;;; Number Parser
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/numpar.scm,v 13.40 1987/01/21 21:40:27 jinx Exp $
-
 (declare (usual-integrations))
 \f
 (define string->number)
               (otherwise chars))))))
 
 ;;; end NUMBER-PARSER-PACKAGE
+))
index 7f714c717b04fabe7cd835321ad5efb759ddce8a..e66798cdec38a5d92fe055838a7eff4440e2727d 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/output.scm,v 13.41 1987/01/23 00:16:55 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -37,8 +39,6 @@
 
 ;;;; Output
 
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/output.scm,v 13.40 1987/01/21 21:40:41 jinx Exp $
-
 (declare (usual-integrations))
 \f
 ;;;; Output Ports
 
 (define (non-printing-object? object)
   (and (not (future? object))
+       (eq? object *the-non-printing-object*)))
        ((access :flush-output port))))))
\ No newline at end of file
index a1754ab7f46ee6e22f278cd9e1daf558c5749c38..852a62c88563c9291b0d37188eb099ba0e6018ad 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/parse.scm,v 13.41 1987/01/23 00:17:04 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
       (ptable-set! sub-table index entry)))))
 
 )
+
index 20f000b486f160c0dd996b6268b0b46fa2b21adb..a07ceb28867c241c96b06b8cb6a8ac3652afb39b 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/pathnm.scm,v 13.41 1987/01/23 00:17:26 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
        (make-pathname (pathname-device pathname)
                       (append (pathname-directory pathname)
                               (list file))
+                      #F #F #F))))
index 178f9270dec83304865082b00ce8858159c09593..8e0e65d2cd1850faf6e751c5cfba86909e997df6 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/pp.scm,v 13.41 1987/01/23 00:17:46 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 (define (pa procedure)
   (if (not (compound-procedure? procedure))
       (error "Must be a compound procedure" procedure))
+  (pp (unsyntax-lambda-list (procedure-lambda procedure))))
   (pp (unsyntax-lambda-list (procedure-lambda procedure))))
\ No newline at end of file
index 2035caf042779aa47ebfdcd949c026497cba8b02..51483a837fb095483d4d7b455f978510335598ac 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/qsort.scm,v 13.41 1987/01/23 00:18:12 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -90,3 +92,4 @@
       (if (vector? obj)
          (begin (sort-internal! obj 0 (-1+ (vector-length obj)))
                 obj)
+         (error "SORT! works on vectors only" obj)))))
index d7343faa0fb7373418439a4df0b4b69ec0ccbc79..da64ac2204e041aa8ce9dac4d4754d290ee604c0 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/rep.scm,v 13.41 1987/01/23 00:18:26 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
       (history-reader rep-state-printer-history 'PRINTER-HISTORY))
 
 )
+
 )
\ No newline at end of file
index fced825d98eaea17698c288de839a507f0fc7e6f..9847bea7c7397341fd6120b2fee3e1aad176d42e 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/scan.scm,v 13.41 1987/01/23 00:18:56 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
            (&triple-third open-block))))
 
 ;;; end LET
+)
index fa67d39cb7f603fbf7ff0da76a05d6c7d8c80610..7d16071fcc3ecc243fac6d020154c05dad9aa9c7 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/scode.scm,v 13.41 1987/01/23 00:19:03 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 
 (define (delay-components delay receiver)
   (receiver (delay-expression delay)))
+
   (receiver (delay-expression delay)))
\ No newline at end of file
index bc1ec8f9c72484e9cd0c0362bc7212ffb2a946b3..eea5f08699eac9b80a2b20cdff9df5fc816c4874 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/scomb.scm,v 13.41 1987/01/23 00:19:15 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 
 (define unbound?-name unassigned?-name)
 (define unbound?-components unassigned?-components)
+
 (define unbound?-components unassigned?-components)
\ No newline at end of file
index 4a4da77d91cd0f2be6c73dd27f9955b6bd76929a..5c318fd1d679a3bd2691eacefad75f40662118c0 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1984 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/sdata.scm,v 13.41 1987/01/23 00:19:30 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
                        (car sublist))
                    (loop (cdr sublist)))))))
 
+)
 )
\ No newline at end of file
index ddee383ca51a50cfd4dfe2353666c3389cab9186..6389664192393c781e9e54d2f5aec04ccce74328 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/sfile.scm,v 13.41 1987/01/23 00:19:51 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -63,3 +65,4 @@
        (if (eq? 'NEWEST (pathname-version pathname))
            (pathname-newest pathname)
            (p-file-exists?
+            (pathname->string (pathname->absolute-pathname pathname))))))))
index 1b32c1d2d512f25d6427cedab8fa4ff6f270143e..f00030a13cb3ea0b254fa329a7a6c245eedc9ca3 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/stream.scm,v 13.41 1987/01/23 00:20:30 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
                                       (delay (tail s1))))))
 
 (define ((spread-tuple procedure) tuple)
+  (apply procedure tuple))
index aa4d8cc6ebffd62d500a738f1a7b025577c8f8ec..93f2260ecf07f828461d57df96da7cfd85eec41d 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/string.scm,v 13.41 1987/01/23 00:20:37 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
              (substring-move-right! string 0 n result 0)
              (begin (substring-fill! result 0 i char)
                     (substring-move-right! string 0 length result i)))
+         result))))
index 433575b9e494c10296dc8861900f36308892487b..a5a4f4c28ba3260769807035f3a45decb5da3735 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/Attic/syntax.scm,v 13.41 1987/01/23 00:21:11 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 ;;; Edwin Variables:
 ;;; Scheme Environment: syntaxer-package
 ;;; End:
+
 )
\ No newline at end of file
index 1e6f8901a46274687863b41d29af206c939853e2..6dcd2aee25dfa22325ad4d7caeb9cc5df8ae345a 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1984 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/sysclk.scm,v 13.41 1987/01/23 00:21:27 jinx Rel $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -89,3 +91,4 @@
                (wait-loop))))))
 
 ;;; end LET.
+)
index bb5df299e9cfce9cfb4dfd3824e94639669d077e..45e4df2a8a0eeba44a9f6e1a25b57daebc52a939 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/system.scm,v 13.41 1987/01/23 00:21:32 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
          (else (beep) (query prompt)))))
 
 )
+
 )
\ No newline at end of file
index 227beb7aaac6682ac246601b1814db3ac4315326..f6184e955285532c2aad612b23c375c4b01a4e73 100644 (file)
@@ -1,5 +1,7 @@
 ;;; -*-Scheme-*-
 ;;;
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unpars.scm,v 13.41 1987/01/23 00:21:48 jinx Exp $
+;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 
 ;;; end UNPARSER-PACKAGE.
 ))
+
 ))
\ No newline at end of file
index 7fd20ea4e512a2b58af991e3f73fb52b7980bdca..66b523a35109b95b72bd605212096cb70be0bd1e 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unsyn.scm,v 13.41 1987/01/23 00:21:55 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
     (,lambda-type ,unsyntax-LAMBDA-object))))
 
 ;;; end UNSYNTAXER-PACKAGE
+))
 ))
\ No newline at end of file
index 462883572c33e9ee933096e692b2bd4598d0ed96..436d9e20ea5758b5f022b303e854c68dd1c762a8 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/utabs.scm,v 13.41 1987/01/23 00:22:10 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 (snarf-version)
 
 ;;; end MICROCODE-SYSTEM.
+))
 ))
\ No newline at end of file
index 06852d963bc25dee2116b6451623157abe1ab6b0..18b3400d5dc00f5cae41b97e2f098318fb66adfb 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/vector.scm,v 13.41 1987/01/23 00:22:17 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 (define (vector-fifth vector) (vector-ref vector 4))
 (define (vector-sixth vector) (vector-ref vector 5))
 (define (vector-seventh vector) (vector-ref vector 6))
+(define (vector-eighth vector) (vector-ref vector 7))
 (define (vector-eighth vector) (vector-ref vector 7))
\ No newline at end of file
index 325c0559697eb18093490d0b97e11bed28f22e7e..d52192d488410654fddb4b356b46a0cdb999cf5a 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1985 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/where.scm,v 13.41 1987/01/23 00:22:23 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
 ;;;; Exports
 
 (define where
+  (access where env-package debugger-package))
   (access where env-package debugger-package))
\ No newline at end of file
index 86dcda8030f70efdbcaee3cc91727f79529e909c..d88e50fdcd0cd83f2eb1fc34da4ae82db85de126 100644 (file)
@@ -1,6 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    Copyright (c) 1986 Massachusetts Institute of Technology
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/wind.scm,v 13.41 1987/01/23 00:22:29 jinx Exp $
+;;;
+;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -97,4 +99,5 @@
               (current-dynamic-state))
   (set-fixed-objects-vector! fov))
 
+
   (set-fixed-objects-vector! fov))
\ No newline at end of file