]> gitweb.factorcode.org Git - factor.git/commitdiff
help.vocabs: tweaked the vocab-not-loaded msg
authorKeith Lazuka <klazuka@gmail.com>
Mon, 14 Sep 2009 18:27:30 +0000 (14:27 -0400)
committerKeith Lazuka <klazuka@gmail.com>
Mon, 14 Sep 2009 18:27:30 +0000 (14:27 -0400)
basis/help/vocabs/vocabs.factor

index a7cd70707dcbc52a3072c44af004857a01e03881..6e2fd6f278c119ae0c64f329cfc1ee1de6b69abe 100644 (file)
@@ -228,10 +228,9 @@ C: <vocab-author> vocab-author
     ] unless-empty ;
 
 : vocab-is-not-loaded ( vocab -- )
-    "Attention" $heading
-    vocab-name dup "The " " vocabulary is not loaded. In order to browse "
-    "its documentation, you must first load it." append surround print-element
-    "USE: " prepend 1array $code ;
+    "Words" $heading
+    "You must first load (USE:) this vocab to browse its documentation/words."
+    print-element vocab-name "USE: " prepend 1array $code ;
 
 : describe-words ( vocab -- )
     dup vocab [ words $words ] [ vocab-is-not-loaded ] if ;