added brief introduction about SLIB
authorBrian Gough <bjg@network-theory.co.uk>
Tue, 15 Dec 2009 10:12:07 +0000 (10:12 +0000)
committerNeil Jerram <neil@ossau.uklinux.net>
Fri, 18 Dec 2009 00:51:20 +0000 (00:51 +0000)
This patch adds a short introduction to the SLIB section of the manual
with a link to the SLIB homepage.

--
Brian Gough

Network Theory Ltd,
Publishing Free Software Manuals --- http://www.network-theory.co.uk/

>From 60548b6e039bf57694b7841996cfda011cb8a4bf Mon Sep 17 00:00:00 2001
From: Brian Gough <bjg@gnu.org>
Date: Mon, 14 Dec 2009 20:49:27 +0000
Subject: [PATCH] added brief introduction about SLIB

doc/ref/slib.texi

index d3357c9..5fe382d 100644 (file)
@@ -8,14 +8,21 @@
 @section SLIB
 @cindex SLIB
 
-Before the SLIB facilities can be used, the following Scheme expression
-must be executed:
+SLIB is a portable library of Scheme packages which can be used with
+Guile and other Scheme implementations.  SLIB is not included in the
+Guile distribution, but can be installed separately (@pxref{SLIB
+installation}).  It is available from
+@url{http://people.csail.mit.edu/jaffer/SLIB.html}.
+
+After SLIB is installed, the following Scheme expression must be
+executed before the SLIB facilities can be used:
 
 @lisp
 (use-modules (ice-9 slib))
 @end lisp
 
 @findex require
+@noindent
 @code{require} can then be used in the usual way (@pxref{Require,,,
 slib, The SLIB Manual}).  For example,