factor/basis/help/syntax/syntax.factor

22 lines
639 B
Factor
Raw Normal View History

2009-03-23 02:18:24 -04:00
! Copyright (C) 2005, 2009 Slava Pestov.
2007-09-20 18:09:08 -04:00
! See http://factorcode.org/license.txt for BSD license.
USING: accessors arrays compiler.units definitions effects
effects.parser help help.topics kernel namespaces parser
sequences vocabs vocabs.parser words ;
2007-09-20 18:09:08 -04:00
IN: help.syntax
SYNTAX: HELP:
2007-09-20 18:09:08 -04:00
scan-word bootstrap-word
[ >link save-location ]
[ [ \ ; parse-until >array ] dip set-word-help ]
bi ;
2007-09-20 18:09:08 -04:00
SYNTAX: ARTICLE:
2008-12-03 09:46:16 -05:00
location [
2009-03-23 02:18:24 -04:00
\ ; parse-until >array [ first2 ] [ 2 tail ] bi <article>
2008-12-03 09:46:16 -05:00
over add-article >link
] dip remember-definition ;
2007-09-20 18:09:08 -04:00
SYNTAX: ABOUT:
current-vocab scan-object >>help changed-definition ;