diff options
author | Ludovic Courtès | 2007-12-14 19:43:47 +0100 |
---|---|---|
committer | Ludovic Courtès | 2007-12-14 19:43:47 +0100 |
commit | 70830b1187d3d1924f38573caf8aeda2372ae84c (patch) | |
tree | 8e6a955d716475a8535f8f6cad756e0832b18b1c /doc/user/user.skb | |
parent | 8a9464a8afabf6066636858f3ed2f1e2e8ef55ac (diff) | |
download | skribilo-70830b1187d3d1924f38573caf8aeda2372ae84c.tar.gz skribilo-70830b1187d3d1924f38573caf8aeda2372ae84c.tar.lz skribilo-70830b1187d3d1924f38573caf8aeda2372ae84c.zip |
doc: Update "Standard Library" and chapter about `skribilo-config'.
* doc/user/Makefile.am (EXTRA_DIST): Rename `skribe-config.skb' to
`skribilo-config.skb'.
(skrflags): Add `-e' flags defining `%top-srcdir' and `%top-builddir'.
* doc/user/lib.skb: Update stuff, removing references to `skribe-*'
functions. Remove doc for `load-document' and `skribe-configure',
both of which have become essentially useless.
* doc/user/skribilo-config.skb: Updated. Actually run `skribilo-config'
and get options from there.
* doc/user/user.skb: Use `(ice-9 popen)' and `(ice-9 rdelim)'. Update
includes.
Diffstat (limited to 'doc/user/user.skb')
-rw-r--r-- | doc/user/user.skb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/user/user.skb b/doc/user/user.skb index 38ea61c..f78f1b0 100644 --- a/doc/user/user.skb +++ b/doc/user/user.skb @@ -39,6 +39,11 @@ (load "doc-config.scm") (if %have-ploticus? (set! %ploticus-program %ploticus-path)) + +;; Modules needed, e.g., to get the output of "skribilo-config --help". +(use-modules (ice-9 popen) + (ice-9 rdelim)) + ;*---------------------------------------------------------------------*/ ;* HTML custom */ @@ -172,8 +177,8 @@ as HTML, PostScript, Info pages, etc.]))))) ;;; Packages (include "package.skb") -;;; skribe-config -(include "skribe-config.skb") +;;; skribilo-config +(include "skribilo-config.skb") ;;; List of examples (include "examples.skb") |