diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-02-02 15:12:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-02-02 18:06:28 +0100 |
commit | 2d5ef30918df6534d84cf6c93d8a640fd0d5387d (patch) | |
tree | 107dfe07ad2d1334dba4037ec2b3c146a3022e85 /libguile/srfi-1.c | |
parent | e1b6a3f150209ddc14e0bcf7ed770823978518a5 (diff) | |
download | guile-2d5ef30918df6534d84cf6c93d8a640fd0d5387d.tar.gz |
Fix typo.
* libguile/srfi-1.c (scm_srfi1_concatenate_x): Fix `FUNC_NAME'.
Diffstat (limited to 'libguile/srfi-1.c')
-rw-r--r-- | libguile/srfi-1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/srfi-1.c b/libguile/srfi-1.c index e2a9c9319..7931138b2 100644 --- a/libguile/srfi-1.c +++ b/libguile/srfi-1.c @@ -1,7 +1,7 @@ /* srfi-1.c --- SRFI-1 procedures for Guile * - * Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005, 2006, 2008, 2009, 2010 - * Free Software Foundation, Inc. + * Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005, 2006, + * 2008, 2009, 2010, 2011 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 @@ -188,7 +188,7 @@ SCM_DEFINE (scm_srfi1_concatenate_x, "concatenate!", 1, 0, 0, "have a limit on the number of arguments a function takes, which\n" "the @code{apply} might exceed. In Guile there is no such\n" "limit.") -#define FUNC_NAME s_scm_srfi1_concatenate +#define FUNC_NAME s_scm_srfi1_concatenate_x { SCM_VALIDATE_LIST (SCM_ARG1, lstlst); return scm_append_x (lstlst); |