Re: [racket-dev] [plt] Push #21487: master branch updated

2010-11-09 Thread Jay McCarthy
You cannot reverse a sequence. You meant (in-list (reverse ...))

Jay

On Tue, Nov 9, 2010 at 1:49 PM,  clkl...@racket-lang.org wrote:
 clklein has updated `master' from 02f301b3b7 to 0d1578cbb1.
  http://git.racket-lang.org/plt/02f301b3b7..0d1578cbb1

 =[ 1 Commits ]==

 Directory summary:
  100.0% collects/meta/drdr/graphs/

 ~~

 0d1578c Casey Klein clkl...@racket-lang.org 2010-11-09 14:46
 :
 | Displays the panes in descending order (to match graph's time axis)
 :
  M collects/meta/drdr/graphs/build-graph.ss |    2 +-

 =[ Overall Diff ]===

 collects/meta/drdr/graphs/build-graph.ss
 
 --- OLD/collects/meta/drdr/graphs/build-graph.ss
 +++ NEW/collects/meta/drdr/graphs/build-graph.ss
 @@ -614,7 +614,7 @@
            (span ((id rev_and_duration)) ))
       (tt (span ((id timings)) ))

 -      ,@(for/list ((graphs (in-list graphss))
 +      ,@(for/list ((graphs (reverse (in-list graphss)))
                    (i (in-naturals)))
           `(map ((name ,(format revmap~a i)))
                 ,@(graphs-areas graphs i)))




-- 
Jay McCarthy j...@cs.byu.edu
Assistant Professor / Brigham Young University
http://faculty.cs.byu.edu/~jay

The glory of God is Intelligence - DC 93
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

Re: [racket-dev] [plt] Push #21487: master branch updated

2010-11-09 Thread Casey Klein
Oops! That'll teach me to try to fix code I don't know how to run.

On Tue, Nov 9, 2010 at 2:54 PM, Jay McCarthy jay.mccar...@gmail.com wrote:
 You cannot reverse a sequence. You meant (in-list (reverse ...))

 Jay

 On Tue, Nov 9, 2010 at 1:49 PM,  clkl...@racket-lang.org wrote:
 clklein has updated `master' from 02f301b3b7 to 0d1578cbb1.
  http://git.racket-lang.org/plt/02f301b3b7..0d1578cbb1

 =[ 1 Commits ]==

 Directory summary:
  100.0% collects/meta/drdr/graphs/

 ~~

 0d1578c Casey Klein clkl...@racket-lang.org 2010-11-09 14:46
 :
 | Displays the panes in descending order (to match graph's time axis)
 :
  M collects/meta/drdr/graphs/build-graph.ss |    2 +-

 =[ Overall Diff ]===

 collects/meta/drdr/graphs/build-graph.ss
 
 --- OLD/collects/meta/drdr/graphs/build-graph.ss
 +++ NEW/collects/meta/drdr/graphs/build-graph.ss
 @@ -614,7 +614,7 @@
            (span ((id rev_and_duration)) ))
       (tt (span ((id timings)) ))

 -      ,@(for/list ((graphs (in-list graphss))
 +      ,@(for/list ((graphs (reverse (in-list graphss)))
                    (i (in-naturals)))
           `(map ((name ,(format revmap~a i)))
                 ,@(graphs-areas graphs i)))




 --
 Jay McCarthy j...@cs.byu.edu
 Assistant Professor / Brigham Young University
 http://faculty.cs.byu.edu/~jay

 The glory of God is Intelligence - DC 93

_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev