From ad250b8d1f0ff8cab1be5734e4846e66d5a921a7 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Fri, 3 Feb 2006 23:31:25 +0000 Subject: [PATCH] (booleans->integer): Avoid newline in macro, it breaks the snarfer. --- srfi/srfi-60.c | 7 ++++--- 1 file 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