]> gitweb.factorcode.org Git - factor.git/blob - core/definitions.facts
more sql changes
[factor.git] / core / definitions.facts
1 IN: definitions
2 USING: help words ;
3
4 HELP: see
5 { $values { "defspec" "a definition specifier" } }
6 { $description "Prettyprints a definition." } ;
7
8 HELP: where
9 { $values { "defspec" "a definition specifier" } { "loc" "an array holding a file name string and line number indexed from 1" } }
10 { $description "Outputs the location of a definition. If the location is not known, will output " { $snippet "{ f f }" } " or " { $link f } "." } ;
11
12 HELP: forget
13 { $values { "defspec" "a definition specifier" } }
14 { $description "Forgets about a definition. For example, if it is a word, it will be removed from its vocabulary." } ;