1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

(booleans->integer): Avoid newline in macro, it breaks the snarfer.

This commit is contained in:
Kevin Ryde 2006-02-03 23:31:25 +00:00
parent e46e8468a5
commit ad250b8d1f

View file

@ -1,6 +1,6 @@
/* srfi-60.c --- Integers as Bits /* 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 * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * 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 #undef FUNC_NAME
SCM_REGISTER_PROC (s_srfi60_booleans_to_integer, "booleans->integer", 0, 0, 1, /* note: don't put "scm_srfi60_list_to_integer" arg on its own line, a
scm_srfi60_list_to_integer); newline breaks the snarfer */
SCM_REGISTER_PROC (s_srfi60_booleans_to_integer, "booleans->integer", 0, 0, 1, scm_srfi60_list_to_integer);
void void