svn: r172
This commit is contained in:
parent
1cccb1f00d
commit
86647b01eb
|
@ -453,7 +453,6 @@ MzTake defines a few functions on time-varying values
|
|||
that are particularly useful when debugging:
|
||||
|
||||
> (history-e stream)
|
||||
|
||||
> (history-b stream)
|
||||
|
||||
Keeps a complete history of all the values seen
|
||||
|
@ -462,7 +461,6 @@ that are particularly useful when debugging:
|
|||
Use with BINDs: (history-b x-trace)
|
||||
|
||||
> (history-e n stream)
|
||||
|
||||
> (history-b n stream)
|
||||
|
||||
Keeps a list of the last n values of a behavior
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
(module make-plt mzscheme
|
||||
|
||||
(require (lib "pack.ss" "setup")
|
||||
#;(lib "util.ss" "planet"))
|
||||
|
||||
(define (my-filter path)
|
||||
(and (std-filter path)
|
||||
(not (or (regexp-match #rx".svn$" path)
|
||||
(regexp-match #rx".bak$" path)
|
||||
(regexp-match #rx".1$" path)
|
||||
(regexp-match #rx"-uncommented.ss$" path)
|
||||
(regexp-match #rx"make" path)))))
|
||||
|
||||
|
||||
;without frtime bundled:
|
||||
(pack-collections "mztake-frtime-distro.plt" "MzTake Debugger"
|
||||
'(("mztake")) #t '(("frtime")("stepper")) my-filter #f)
|
||||
|
||||
(pack-collections "mztake-distro.plt" "MzTake Debugger"
|
||||
'(("mztake")("frtime")) #t '(("stepper")) my-filter #f))
|
||||
(module make-plt mzscheme
|
||||
|
||||
(require (lib "pack.ss" "setup")
|
||||
#;(lib "util.ss" "planet"))
|
||||
|
||||
(define (my-filter path)
|
||||
(and (std-filter path)
|
||||
(not (or (regexp-match #rx".svn$" path)
|
||||
(regexp-match #rx".bak$" path)
|
||||
(regexp-match #rx".1$" path)
|
||||
(regexp-match #rx"-uncommented.ss$" path)
|
||||
(regexp-match #rx"make" path)))))
|
||||
|
||||
|
||||
;without frtime bundled:
|
||||
(pack-collections "mztake-distro.plt" "MzTake Debugger"
|
||||
'(("mztake")) #t '(("frtime")("stepper")) my-filter #f)
|
||||
|
||||
(pack-collections "mztake-frtime-distro.plt" "MzTake Debugger"
|
||||
'(("mztake")("frtime")) #t '(("stepper")) my-filter #f))
|
||||
|
|
Loading…
Reference in New Issue
Block a user