summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--THANKS1
-rw-r--r--doc/tutorial/guile-tut.texi3
2 files changed, 3 insertions, 1 deletions
diff --git a/THANKS b/THANKS
index b61693373..7c6e4c620 100644
--- a/THANKS
+++ b/THANKS
@@ -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
diff --git a/doc/tutorial/guile-tut.texi b/doc/tutorial/guile-tut.texi
index ed0b20210..dee302df9 100644
--- a/doc/tutorial/guile-tut.texi
+++ b/doc/tutorial/guile-tut.texi
@@ -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));