Fix bad load ordering
parent
1db7e29695
commit
2816dd552e
|
@ -2,7 +2,7 @@
|
|||
! See http://factorcode.org/license.txt for BSD license.
|
||||
IN: help
|
||||
USING: arrays io kernel namespaces parser prettyprint sequences
|
||||
words modules ;
|
||||
words ;
|
||||
|
||||
M: word article-title
|
||||
dup parsing? [
|
||||
|
@ -65,6 +65,3 @@ M: word article-content
|
|||
|
||||
: $outliner ( element -- )
|
||||
[ first call help-outliner ] ($block) ;
|
||||
|
||||
: modules-help ( -- seq )
|
||||
modules get [ second module-help ] map [ ] subset ;
|
||||
|
|
|
@ -89,3 +89,6 @@ C: module ( name files tests help -- module )
|
|||
"To define one, see the documentation for the " write
|
||||
\ MAIN: ($link) " word." print
|
||||
] ?if ;
|
||||
|
||||
: modules-help ( -- seq )
|
||||
modules get [ second module-help ] map [ ] subset ;
|
||||
|
|
Loading…
Reference in New Issue