summary refs log tree commit diff
path: root/doc/user/document.skb
diff options
context:
space:
mode:
authorLudovic Courtès2008-04-07 22:22:16 +0200
committerLudovic Courtès2008-04-07 22:22:16 +0200
commit9745ff5744d97fa66b42587e6a304d3bdf8054ab (patch)
treeb807c4ce5c4532b8ee351a8c0a24e34e28936c70 /doc/user/document.skb
parentf8afeb805f2409283dc37d4e0a16e01303a4f5aa (diff)
downloadskribilo-9745ff5744d97fa66b42587e6a304d3bdf8054ab.tar.gz
skribilo-9745ff5744d97fa66b42587e6a304d3bdf8054ab.tar.lz
skribilo-9745ff5744d97fa66b42587e6a304d3bdf8054ab.zip
doc: Use the native API instead of `--compat=skribe'.
* doc/user/Makefile.am (skrflags): Remove `--compat=skribe'.

* doc/user/*.skb: Trivial API update.
Diffstat (limited to 'doc/user/document.skb')
-rw-r--r--doc/user/document.skb10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/user/document.skb b/doc/user/document.skb
index b5c3461..7bedb7a 100644
--- a/doc/user/document.skb
+++ b/doc/user/document.skb
@@ -1,5 +1,6 @@
 ;;; document.skb  --  Document and author
 ;;;
+;;; Copyright 2008  Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright 2003, 2004  Manuel Serrano
 ;;;
 ;;;
@@ -29,8 +30,8 @@
 	     (ta (table (tr (map (lambda (n) 
 				    (td :valign 'top :align 'center n))
 	                         (if (list? a) a (list a)))))))
-	 (skribe-eval (center (bold t)) e)
-	 (skribe-eval (center ta) e)
+	 (evaluate-document (center (bold t)) e)
+	 (evaluate-document (center ta) e)
 	 (output b e))))
 
 ;*---------------------------------------------------------------------*/
@@ -91,3 +92,8 @@ document.])
 (example-produce 
  (example :legend "The author markup" (prgm :file "src/api3.skb"))
  (disp (include "src/api3.skb")))))
+
+;;; Local Variables:
+;;; coding: latin-1
+;;; ispell-local-dictionary: "american"
+;;; End: