summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2001-05-18 17:16:40 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2001-05-18 17:16:40 +0000
commit58e5b910864b9a7a3dcc6b747d537d0ddbfda5e2 (patch)
treeacb4a23ef34b91eb30b0581f2b668bf5487e4449
parent3125fbe050491e3304e62447f3c17f39aafe30d8 (diff)
downloadguile-58e5b910864b9a7a3dcc6b747d537d0ddbfda5e2.tar.gz
Mention `read-scheme-source'.
Mention support for "(help 'NAME)".
-rw-r--r--NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 6308e29b7..0c5ec903f 100644
--- a/NEWS
+++ b/NEWS
@@ -91,6 +91,7 @@ also be executable as scripts. At this time, these scripts are available:
doc-snarf
generate-autoload
punify
+ read-scheme-source
use2dot
See README there for more info.
@@ -309,7 +310,7 @@ Example:
$ guile --use-srfi=8,13
guile> (receive (x z) (values 1 2) (+ 1 2))
3
-guile> (string-pad "bla" 20)
+guile> (string-pad "bla" 20)
" bla"
@@ -1057,6 +1058,7 @@ This is useful when debugging your .guile init file or scripts.
Usage: (help NAME) gives documentation about objects named NAME (a symbol)
(help REGEXP) ditto for objects with names matching REGEXP (a string)
+ (help 'NAME) gives documentation for NAME, even if it is not an object
(help ,EXPR) gives documentation for object returned by EXPR
(help (my module)) gives module commentary for `(my module)'
(help) gives this text