mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 16:30:19 +02:00
* scm_validate.h (SCM_VALIDATE_BOOL_COPY): Fix typo.
This commit is contained in:
parent
2fdcf8bdf0
commit
0274863396
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: scm_validate.h,v 1.13 2000-01-07 23:53:20 gjb Exp $ */
|
||||
/* $Id: scm_validate.h,v 1.14 2000-01-09 03:52:29 gjb Exp $ */
|
||||
/* Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@ -95,7 +95,7 @@
|
|||
#define SCM_VALIDATE_BOOL(pos,flag) SCM_MAKE_VALIDATE(pos,flag,BOOLP)
|
||||
|
||||
#define SCM_VALIDATE_BOOL_COPY(pos,flag,cvar) \
|
||||
do { SCM_ASSERT(SCM_BOOLP(flags), flag, pos, FUNC_NAME); \
|
||||
do { SCM_ASSERT(SCM_BOOLP(flag), flag, pos, FUNC_NAME); \
|
||||
cvar = (SCM_BOOL_T == flag)? 1: 0; } while (0)
|
||||
|
||||
#define SCM_VALIDATE_CHAR(pos,scm) SCM_MAKE_VALIDATE(pos,scm,ICHRP)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue