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.
|
2011-10-18 23:12:42 -04:00
|
|
|
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
|
|
|
|
|
2009-03-21 02:27:50 -04:00
|
|
|
SYNTAX: HELP:
|
2007-09-20 18:09:08 -04:00
|
|
|
scan-word bootstrap-word
|
2011-10-18 22:14:53 -04:00
|
|
|
[ >link save-location ]
|
2011-10-20 22:36:11 -04:00
|
|
|
[ [ \ ; parse-until >array ] dip set-word-help ]
|
2011-10-18 23:12:42 -04:00
|
|
|
bi ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-03-21 02:27:50 -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
|
2009-03-21 02:27:50 -04:00
|
|
|
] dip remember-definition ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-03-21 02:27:50 -04:00
|
|
|
SYNTAX: ABOUT:
|
2009-05-14 23:31:29 -04:00
|
|
|
current-vocab scan-object >>help changed-definition ;
|