1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

fix a bug in the tutorial

* doc/tutorial/guile-tut.texi (c_builtins.c): Fix a typo with an
  undeclared variable. Thanks to Raimon Grau for the pointer. This
  tutorial is quite out of date, though...
This commit is contained in:
Andy Wingo 2010-02-16 21:35:57 +01:00
parent 04af4c4c52
commit 3ef9fa53f9
2 changed files with 3 additions and 1 deletions

1
THANKS
View file

@ -50,6 +50,7 @@ For fixes or providing information which led to a fix:
Panicz Maciej Godek
John Goerzen
Mike Gran
Raimon Grau
Szavai Gyula
Roland Haeder
Sven Hartrumpf

View file

@ -34,7 +34,7 @@
@page
@vskip 0pt plus 1filll
Copyright @copyright{} 1997, 1998, 2004, 2006 Free Software Foundation
Copyright @copyright{} 1997, 1998, 2004, 2006, 2010 Free Software Foundation
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
@ -1203,6 +1203,7 @@ SCM c_sin(SCM s_x)
SCM vector_test(SCM s_length)
@{
SCM xvec;
unsigned long c_length;
c_length = gh_scm2ulong(s_length);
printf("requested length for vector: %ld\n", gh_scm2ulong(s_length));