diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2009-08-09 14:54:18 +0100 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2009-08-09 15:04:08 +0100 |
commit | aba0dff5f7ee451b44af771f8ab09b750ce15f74 (patch) | |
tree | 9ef35ce71bfb98954e861ed5fcc912673a71c4c0 /doc/ref/libguile-extensions.texi | |
parent | f618f4363dc0a2ba96178fddf364b357e49600b2 (diff) | |
download | guile-aba0dff5f7ee451b44af771f8ab09b750ce15f74.tar.gz |
In general, use @lisp in preference to @smalllisp
because it looks better in the DVI output. Exceptions are
- wide examples, which would cause overfull hboxes if they
used the bigger @lisp font
- very large examples, which may look too big at the @lisp size.
Diffstat (limited to 'doc/ref/libguile-extensions.texi')
-rw-r--r-- | doc/ref/libguile-extensions.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/libguile-extensions.texi b/doc/ref/libguile-extensions.texi index 77762b5c5..78871c6ca 100644 --- a/doc/ref/libguile-extensions.texi +++ b/doc/ref/libguile-extensions.texi @@ -94,11 +94,11 @@ we are going to call the function @code{init_bessel} which will make @file{.so} when invoking @code{load-extension}. The right extension for the host platform will be provided automatically. -@smalllisp +@lisp (load-extension "libguile-bessel" "init_bessel") (j0 2) @result{} 0.223890779141236 -@end smalllisp +@end lisp For this to work, @code{load-extension} must be able to find @file{libguile-bessel}, of course. It will look in the places that |