factor/library/help/syntax.factor

15 lines
370 B
Factor
Raw Normal View History

2005-12-23 02:21:01 -05:00
IN: !syntax
USING: arrays help kernel parser sequences syntax words ;
: HELP:
2006-01-06 02:04:42 -05:00
scan-word bootstrap-word dup [
2005-12-28 20:25:17 -05:00
>array uncons* >r "stack-effect" set-word-prop r>
"help" set-word-prop
] [ ] ; parsing
2005-12-23 02:21:01 -05:00
: ARTICLE:
[ >array [ first2 2 ] keep tail add-article ] [ ] ; parsing
: GLOSSARY:
[ >array [ first 1 ] keep tail add-term ] [ ] ; parsing