2009-03-11 08:18:24 -04:00
|
|
|
! Copyright (C) 2007, 2009 Slava Pestov.
|
2007-09-20 18:09:08 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-08-31 08:45:33 -04:00
|
|
|
USING: accessors definitions help help.topics help.syntax
|
2008-12-08 15:58:00 -05:00
|
|
|
prettyprint.backend prettyprint.custom prettyprint words kernel
|
2009-03-11 08:18:24 -04:00
|
|
|
effects see ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: help.definitions
|
|
|
|
|
|
|
|
! Definition protocol implementation
|
|
|
|
|
|
|
|
M: link definer drop \ ARTICLE: \ ; ;
|
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: link where name>> article loc>> ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: link set-where name>> article (>>loc) ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: link forget* name>> remove-article ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
M: link definition article-content ;
|
|
|
|
|
|
|
|
M: link synopsis*
|
2008-01-06 11:13:44 -05:00
|
|
|
dup definer.
|
2008-08-31 08:45:33 -04:00
|
|
|
dup name>> pprint*
|
2007-09-20 18:09:08 -04:00
|
|
|
article-title pprint* ;
|
|
|
|
|
|
|
|
M: word-link definer drop \ HELP: \ ; ;
|
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: word-link where name>> "help-loc" word-prop ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: word-link set-where name>> swap "help-loc" set-word-prop ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: word-link definition name>> "help" word-prop ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
M: word-link synopsis*
|
2008-01-06 11:13:44 -05:00
|
|
|
dup definer.
|
2008-08-31 08:45:33 -04:00
|
|
|
name>> dup pprint-word
|
2007-09-20 18:09:08 -04:00
|
|
|
stack-effect. ;
|
|
|
|
|
2008-08-31 08:45:33 -04:00
|
|
|
M: word-link forget* name>> remove-word-help ;
|