From c8588a37ee08f2c2fc90a0883f2931363ffc0d7a Mon Sep 17 00:00:00 2001 From: Slava Pestov <slava@slava-pestovs-macbook-pro.local> Date: Fri, 4 Apr 2008 06:28:51 -0500 Subject: [PATCH] Load fixes --- core/prettyprint/config/config-docs.factor | 6 ------ core/prettyprint/sections/sections-docs.factor | 13 ------------- 2 files changed, 19 deletions(-) diff --git a/core/prettyprint/config/config-docs.factor b/core/prettyprint/config/config-docs.factor index f197ac7966..1a2fd69949 100644 --- a/core/prettyprint/config/config-docs.factor +++ b/core/prettyprint/config/config-docs.factor @@ -4,12 +4,6 @@ IN: prettyprint.config ABOUT: "prettyprint-variables" -HELP: indent -{ $var-description "The prettyprinter's current indent level." } ; - -HELP: pprinter-stack -{ $var-description "A stack of " { $link block } " objects currently being constructed by the prettyprinter." } ; - HELP: tab-size { $var-description "Prettyprinter tab size. Indent nesting is always a multiple of the tab size." } ; diff --git a/core/prettyprint/sections/sections-docs.factor b/core/prettyprint/sections/sections-docs.factor index 3a86c014af..b07e83d0d1 100755 --- a/core/prettyprint/sections/sections-docs.factor +++ b/core/prettyprint/sections/sections-docs.factor @@ -5,18 +5,9 @@ strings definitions ; HELP: position { $var-description "The prettyprinter's current character position." } ; -HELP: last-newline -{ $var-description "The character position of the last newline output by the prettyprinter." } ; - HELP: recursion-check { $var-description "The current nesting of collections being output by the prettyprinter, used to detect circularity and prevent infinite recursion." } ; -HELP: line-count -{ $var-description "The number of lines output by the prettyprinter so far, used for line limiting (see " { $link line-limit } ")." } ; - -HELP: end-printing -{ $var-description "A continuation captured by " { $link do-pprint } " that breaks out of the printer." } ; - HELP: line-limit? { $values { "?" "a boolean" } } { $description "Tests if the line number limit has been reached, and thus if prettyprinting should stop." } ; @@ -90,10 +81,6 @@ HELP: construct-section { $values { "style" hashtable } { "length" integer } { "section" section } } { $description "Creates a new section with the given length starting from " { $link position } ", advancing " { $link position } "." } ; -HELP: change-indent -{ $values { "section" section } { "n" integer } } -{ $description "If the section requests indentation, adds " { $snippet "n" } " to the indent level, otherwise does nothing." } ; - HELP: <indent { $values { "section" section } } { $description "Increases indentation by the " { $link tab-size } " if requested by the section." } ;