diff options
Diffstat (limited to 'libguile/scm_validate.h')
-rw-r--r-- | libguile/scm_validate.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libguile/scm_validate.h b/libguile/scm_validate.h index 3af1c9789..d67f2b780 100644 --- a/libguile/scm_validate.h +++ b/libguile/scm_validate.h @@ -1,4 +1,4 @@ -/* $Id: scm_validate.h,v 1.8 1999-12-19 01:04:36 gjb Exp $ */ +/* $Id: scm_validate.h,v 1.9 2000-01-05 16:16:57 gjb Exp $ */ /* Copyright (C) 1999 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify @@ -264,6 +264,11 @@ #define SCM_VALIDATE_VECTOR(pos,v) SCM_MAKE_VALIDATE(pos,v,VECTORP) +#define SCM_VALIDATE_VECTOR_OR_DVECTOR(pos,v) \ + do { SCM_ASSERT ((SCM_VECTORP (v) || \ + (SCM_NIMP (v) && SCM_TYP7 (v) == scm_tc7_dvect)), \ + v, pos, FUNC_NAME); } while (0) + #define SCM_VALIDATE_STRUCT(pos,v) SCM_MAKE_VALIDATE(pos,v,STRUCTP) #define SCM_VALIDATE_VTABLE(pos,v) \ |