#| -*-Scheme-*-
-$Id: optiondb.scm,v 1.1 1994/10/03 17:31:32 adams Exp $
+$Id: optiondb.scm,v 1.2 1994/10/11 20:57:02 cph Exp $
Copyright (c) 1994 Massachusetts Institute of Technology
Technology nor of any adaptation thereof in any advertising,
promotional, or sales literature without prior written consent from
MIT in each case. |#
+
+(declare (usual-integrations))
+\f
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This file contains Scheme code to define a set of load options. Each
;; supplied for every user of your architecture at your site). If
;; not specified, or is #F, then this file is the last options
;; database that is searched.
-\f
-(declare (usual-integrations))
;; Standard load options are defined like this:
(lambda (spec)
(define-load-option (car spec) (apply standard-option-loader (cdr spec))))
'((FORMAT (RUNTIME FORMAT) (INITIALIZE-PACKAGE!) "format")
- (COMPRESS (RUNTIME COMPRESS) #F "cpress")
+ (COMPRESS (RUNTIME COMPRESS) #F "cpress")
(HASH-TABLE (RUNTIME HASH-TABLE) (INITIALIZE-PACKAGE!) "hashtb")
- (RB-TREE (RUNTIME RB-TREE) #F "rbtree")
- (WT-TREE (RUNTIME WT-TREE) #F "wttree")
- (SUBPROCESS (RUNTIME SUBPROCESS) (INITIALIZE-PACKAGE!) "process")))
+ (RB-TREE (RUNTIME RB-TREE) #F "rbtree")
+ (WT-TREE (RUNTIME WT-TREE) #F "wttree")
+ (SUBPROCESS (RUNTIME SUBPROCESS) (INITIALIZE-PACKAGE!) "process")
+ (STEPPER (RUNTIME STEPPER) #F "ystep")
+ ))
(define-load-option 'DOSPROCESS
- (standard-option-loader '() #F "dosproc"))
+ (standard-option-loader '() #F "dosproc"))
\ No newline at end of file
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.234 1994/10/03 17:27:17 adams Exp $
+$Id: runtime.pkg,v 14.235 1994/10/11 20:54:26 cph Exp $
Copyright (c) 1988-1994 Massachusetts Institute of Technology
(parent ())
(export ()
apropos
- apropos-list))
\ No newline at end of file
+ apropos-list))
+
+(define-package (runtime stepper)
+ (file-case options
+ ((load) "ystep")
+ (else))
+ (parent ())
+ (export ()
+ step
+ step-form
+ step-n
+ step-over
+ step-proceed
+ step-quit
+ step-run
+ step-until
+ step-until-visibly))
\ No newline at end of file
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.234 1994/10/03 17:27:17 adams Exp $
+$Id: runtime.pkg,v 14.235 1994/10/11 20:54:26 cph Exp $
Copyright (c) 1988-1994 Massachusetts Institute of Technology
(parent ())
(export ()
apropos
- apropos-list))
\ No newline at end of file
+ apropos-list))
+
+(define-package (runtime stepper)
+ (file-case options
+ ((load) "ystep")
+ (else))
+ (parent ())
+ (export ()
+ step
+ step-form
+ step-n
+ step-over
+ step-proceed
+ step-quit
+ step-run
+ step-until
+ step-until-visibly))
\ No newline at end of file