diff options
author | Andy Wingo <wingo@pobox.com> | 2014-04-28 18:51:21 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2014-04-28 18:51:21 +0200 |
commit | d7a67c3e918acd8ca46dc7792a8ca98b33cb94e8 (patch) | |
tree | 7ccf125978778d1ac6bb656245305c76db8e02d0 /doc/ref/tools.texi | |
parent | 475772ea57c97d0fa0f9ed9303db137d9798ddd3 (diff) | |
parent | 4338f2f91e1dd63a40384077d091295d90047926 (diff) | |
download | guile-d7a67c3e918acd8ca46dc7792a8ca98b33cb94e8.tar.gz |
Merge remote-tracking branch 'origin/stable-2.0'
Conflicts:
.gitignore
doc/example-smob/Makefile
doc/ref/api-smobs.texi
doc/ref/libguile-concepts.texi
doc/ref/libguile-smobs.texi
libguile.h
libguile/finalizers.c
libguile/finalizers.h
libguile/goops.c
module/language/tree-il/compile-glil.scm
module/oop/goops.scm
Diffstat (limited to 'doc/ref/tools.texi')
-rw-r--r-- | doc/ref/tools.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ref/tools.texi b/doc/ref/tools.texi index 2c624936f..e962a86ab 100644 --- a/doc/ref/tools.texi +++ b/doc/ref/tools.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2011 +@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2011, 2014 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -112,11 +112,11 @@ For example, here is how you might define a new subr called #include <libguile.h> SCM_DEFINE (clear_image, "clear-image", 1, 0, 0, - (SCM image_smob), + (SCM image), "Clear the image.") #define FUNC_NAME s_clear_image @{ - /* C code to clear the image in @code{image_smob}... */ + /* C code to clear the image in @code{image}... */ @} #undef FUNC_NAME @@ -131,8 +131,8 @@ init_image_type () The @code{SCM_DEFINE} declaration says that the C function @code{clear_image} implements a Scheme subr called @code{clear-image}, which takes one required argument (of type @code{SCM} and named -@code{image_smob}), no optional arguments, and no rest argument. -@xref{Doc Snarfing}, for info on the docstring. +@code{image}), no optional arguments, and no rest argument. @xref{Doc +Snarfing}, for info on the docstring. This works in concert with @code{FUNC_NAME} to also define a static array of characters named @code{s_clear_image}, initialized to the |