diff options
author | Andy Wingo <wingo@pobox.com> | 2011-02-20 13:15:34 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-02-20 13:16:37 +0100 |
commit | 4b93693dffb2a4bd0d0da137b4d768ca3e68e8f1 (patch) | |
tree | 411458d7ccd7a6bcee01916a01eadc3e6b430ca5 /doc/ref/api-foreign.texi | |
parent | 1867d3e0195168a34cf2269c2137ac561d03a252 (diff) | |
download | guile-4b93693dffb2a4bd0d0da137b4d768ca3e68e8f1.tar.gz |
@value{EFFECTIVE-VERSION} instead of 2.0 in some places in the manual
* doc/ref/history.texi (A Timeline of Selected Guile Releases): Update
the 2.0 release blurb.
* doc/ref/api-foreign.texi (Modules and Extensions):
* doc/ref/libguile-extensions.texi (A Sample Guile Extension):
* doc/ref/tour.texi (Linking Guile into Programs): Use
@value{EFFECTIVE-VERSION} instead of 2.0. Also fix sample extension
compilation line to include the Guile CFLAGS.
Diffstat (limited to 'doc/ref/api-foreign.texi')
-rw-r--r-- | doc/ref/api-foreign.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/api-foreign.texi b/doc/ref/api-foreign.texi index fa65d6821..e9d7df6eb 100644 --- a/doc/ref/api-foreign.texi +++ b/doc/ref/api-foreign.texi @@ -360,8 +360,8 @@ When loaded with @code{(use-modules (foo bar))}, the @code{load-extension} call looks for the @file{foobar-c-code.so} (etc) object file in Guile's @code{extensiondir}, which is usually a subdirectory of the @code{libdir}. For example, if your libdir is -@file{/usr/lib}, the @code{extensiondir} for the Guile 2.0.@var{x} -series will be @file{/usr/lib/guile/2.0/}. +@file{/usr/lib}, the @code{extensiondir} for the Guile @value{EFFECTIVE-VERSION}.@var{x} +series will be @file{/usr/lib/guile/@value{EFFECTIVE-VERSION}/}. The extension path includes the major and minor version of Guile (the ``effective version''), because Guile guarantees compatibility within a @@ -399,7 +399,7 @@ with the following in a @file{Makefile}, using @command{sed} @example foo.scm: foo.scm.in - sed 's|XXextensiondirXX|$(libdir)/guile/2.0|' <foo.scm.in >foo.scm + sed 's|XXextensiondirXX|$(libdir)/guile/@value{EFFECTIVE-VERSION}|' <foo.scm.in >foo.scm @end example The actual pattern @code{XXextensiondirXX} is arbitrary, it's only something |