factor/basis/help/syntax/syntax.factor

24 lines
633 B
Factor
Raw Normal View History

2008-04-05 08:00:09 -04:00
! Copyright (C) 2005, 2008 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
dup set-word
dup >link save-location
\ ; parse-until >array swap set-word-help ;
2007-09-20 18:09:08 -04:00
SYNTAX: ARTICLE:
2008-12-03 09:46:16 -05:00
location [
\ ; parse-until >array [ first2 ] keep 2 tail <article>
over add-article >link
] dip remember-definition ;
2007-09-20 18:09:08 -04:00
SYNTAX: ABOUT:
2008-04-05 08:00:09 -04:00
in get vocab
2008-08-31 02:34:00 -04:00
dup changed-definition
scan-object >>help drop ;