diff options
author | Kevin Ryde <user42@zip.com.au> | 2006-02-03 23:31:25 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2006-02-03 23:31:25 +0000 |
commit | ad250b8d1f0ff8cab1be5734e4846e66d5a921a7 (patch) | |
tree | 121b465fdf41e744774a011ae95eae2dea8c2632 /srfi/srfi-60.c | |
parent | e46e8468a54ceaa3d9bf37935dbb7e180e23f47d (diff) | |
download | guile-ad250b8d1f0ff8cab1be5734e4846e66d5a921a7.tar.gz |
(booleans->integer): Avoid newline in macro, it breaks the snarfer.
Diffstat (limited to 'srfi/srfi-60.c')
-rw-r--r-- | srfi/srfi-60.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/srfi/srfi-60.c b/srfi/srfi-60.c index 73049d3bb..257b1387f 100644 --- a/srfi/srfi-60.c +++ b/srfi/srfi-60.c @@ -1,6 +1,6 @@ /* srfi-60.c --- Integers as Bits * - * Copyright (C) 2005 Free Software Foundation, Inc. + * Copyright (C) 2005, 2006 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 @@ -403,8 +403,9 @@ SCM_DEFINE (scm_srfi60_list_to_integer, "list->integer", 1, 0, 0, #undef FUNC_NAME -SCM_REGISTER_PROC (s_srfi60_booleans_to_integer, "booleans->integer", 0, 0, 1, - scm_srfi60_list_to_integer); +/* note: don't put "scm_srfi60_list_to_integer" arg on its own line, a + newline breaks the snarfer */ +SCM_REGISTER_PROC (s_srfi60_booleans_to_integer, "booleans->integer", 0, 0, 1, scm_srfi60_list_to_integer); void |