]> gitweb.factorcode.org Git - factor.git/commitdiff
actually, no, it doesn't provide warnings for references to forgotten words
authorJoe Groff <arcata@gmail.com>
Fri, 6 Nov 2009 21:25:33 +0000 (15:25 -0600)
committerJoe Groff <arcata@gmail.com>
Fri, 6 Nov 2009 21:25:33 +0000 (15:25 -0600)
core/definitions/definitions-docs.factor
core/parser/parser-docs.factor

index f40769ae395ecd4a34becc9d986792dcd1ec207b..0d207d9cc670dea1c1313c0a3c99a5f730e49f7e 100644 (file)
@@ -20,7 +20,7 @@ $nl
 { $see-also "see" } ;
 
 ARTICLE: "definition-checking" "Definition sanity checking"
-"When a source file is reloaded, the parser compares the previous list of definitions with the current list; any definitions which are no longer present in the file are removed by a call to " { $link forget } ". A warning message is printed if any other definitions still depend on the removed definitions."
+"When a source file is reloaded, the parser compares the previous list of definitions with the current list; any definitions which are no longer present in the file are removed by a call to " { $link forget } "."
 $nl
 "The parser also catches forward references when reloading source files. This is best illustrated with an example. Suppose we load a source file " { $snippet "a.factor" } ":"
 { $code
index 844581c6d98ae07b7f06350456962aa50b8a7cf0..97dbab384e5ec1ed9d052e44849e7d144f3d9606 100644 (file)
@@ -216,7 +216,7 @@ HELP: filter-moved
 { $description "Removes all definitions from " { $snippet "assoc2" } " which are in " { $snippet "assoc1" } " or are are no longer present in the current " { $link file } "." } ;
 
 HELP: forget-smudged
-{ $description "Forgets removed definitions and prints a warning message if any of them are still referenced from other source files." } ;
+{ $description "Forgets removed definitions." } ;
 
 HELP: finish-parsing
 { $values { "lines" "the lines of text just parsed" } { "quot" "the quotation just parsed" } }