summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2012-02-08 03:14:17 -0500
committerMark H Weaver <mhw@netris.org>2012-02-08 15:14:26 -0500
commit58996e37bba53ae91e6ecff56aa2bb155047bc1e (patch)
treea921726e8cc733633fd2de4bcff72614e6001675
parent4fbbf346a654e84f89008e1800e8f867fde57462 (diff)
downloadguile-58996e37bba53ae91e6ecff56aa2bb155047bc1e.tar.gz
Remove incorrect comment in read.c
* libguile/read.c (scm_read_sharp): Remove incorrect comment that claims that scm_read_boolean might return a SRFI-4 vector.
-rw-r--r--libguile/read.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libguile/read.c b/libguile/read.c
index 616672418..cf5d8177a 100644
--- a/libguile/read.c
+++ b/libguile/read.c
@@ -1,5 +1,5 @@
-/* Copyright (C) 1995,1996,1997,1999,2000,2001,2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
- * Foundation, Inc.
+/* Copyright (C) 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2004, 2006,
+ * 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -1332,7 +1332,6 @@ scm_read_sharp (scm_t_wchar chr, SCM port)
case 't':
case 'T':
case 'F':
- /* This one may return either a boolean or an SRFI-4 vector. */
return (scm_read_boolean (chr, port));
case ':':
return (scm_read_keyword (chr, port));