factor/basis/help/syntax/syntax.factor

20 lines
607 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 kernel parser sequences words help
help.topics namespaces vocabs definitions compiler.units
vocabs.parser ;
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
2009-03-23 02:18:24 -04:00
[ >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:
2009-03-23 02:18:24 -04:00
in get vocab scan-object >>help changed-definition ;