diff options
author | Ludovic Courtès | 2008-02-04 12:04:31 +0100 |
---|---|---|
committer | Ludovic Courtès | 2008-02-04 12:04:31 +0100 |
commit | 81e708884c8e3e567db81ef557e8c67dcbe9368e (patch) | |
tree | 840922029915aac1984c19a4f721b9998c21bf57 /doc/user/skribilo-config.skb | |
parent | eb282a57c7b789471f30836108998e104478b30d (diff) | |
download | skribilo-81e708884c8e3e567db81ef557e8c67dcbe9368e.tar.gz skribilo-81e708884c8e3e567db81ef557e8c67dcbe9368e.tar.lz skribilo-81e708884c8e3e567db81ef557e8c67dcbe9368e.zip |
doc: Small style fixes.
Diffstat (limited to 'doc/user/skribilo-config.skb')
-rw-r--r-- | doc/user/skribilo-config.skb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/user/skribilo-config.skb b/doc/user/skribilo-config.skb index 1016a50..ae3dd22 100644 --- a/doc/user/skribilo-config.skb +++ b/doc/user/skribilo-config.skb @@ -1,6 +1,6 @@ ;;; skribilo-config.skb -- The `skribilo-config' tool ;;; -;;; Copyright 2007 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2007, 2008 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2004 Manuel Serrano ;;; ;;; @@ -37,7 +37,7 @@ program that gives information about the current configuration.]) ;; Description (section :title "Description" :number #f - [The ,(code "skribilo-config") program gives information about the + (p [The ,(code "skribilo-config") program gives information about the Skribilo configuration, such as the module installation path, version number, etc. The full list of supported options and their meaning is the following:] @@ -50,14 +50,14 @@ the following:] (let loop ((line (read-line port)) (lines '())) (if (eof-object? line) - (reverse! lines) + (tt (string-concatenate-reverse lines)) (begin (loop (read-line port) - (cons* line "\n" lines))))))) + (cons* line "\n" lines)))))))) - [Note that the same information can be obtained through the + (p [Note that the same information can be obtained through the programming interface exposed by the ,(code [(skribilo config)]) module -(,(numref :text [see Section] :ident "config-module")).])) +(,(numref :text [see Section] :ident "config-module")).]))) ;;; Local Variables: |