summaryrefslogtreecommitdiff
path: root/libguile/scm_validate.h
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>2000-01-11 19:19:59 +0000
committerGreg J. Badros <gjb@cs.washington.edu>2000-01-11 19:19:59 +0000
commit9a8351bc1513f9813d717c8848b5447c92d40f00 (patch)
tree5c4917652c6b090e6ede5e4bc9b87b855330a484 /libguile/scm_validate.h
parent7965d98fd6b24023e47d29f018ec0216d85d0253 (diff)
downloadguile-9a8351bc1513f9813d717c8848b5447c92d40f00.tar.gz
* scm_validate.h, chars.c, ports.c, print.c, read.c, strings.c,
strop.c: Use SCM_VALIDATE_ICHR, SCM_VALIDATE_ICHR_COPY instead of SCM_VALIDATE_CHAR, SCM_VALIDATE_CHAR_COPY. Change made for consistency with the other macros dealing with immediate characters. (Similar to INT -> INUM change a week or so ago).
Diffstat (limited to 'libguile/scm_validate.h')
-rw-r--r--libguile/scm_validate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/scm_validate.h b/libguile/scm_validate.h
index 99fc5a01c..5a883cc7c 100644
--- a/libguile/scm_validate.h
+++ b/libguile/scm_validate.h
@@ -1,4 +1,4 @@
-/* $Id: scm_validate.h,v 1.15 2000-01-09 13:41:53 ghouston Exp $ */
+/* $Id: scm_validate.h,v 1.16 2000-01-11 19:19:59 gjb Exp $ */
/* Copyright (C) 1999 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
@@ -95,9 +95,9 @@
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)
+#define SCM_VALIDATE_ICHR(pos,scm) SCM_MAKE_VALIDATE(pos,scm,ICHRP)
-#define SCM_VALIDATE_CHAR_COPY(pos,scm,cvar) \
+#define SCM_VALIDATE_ICHR_COPY(pos,scm,cvar) \
do { SCM_ASSERT(SCM_ICHRP(scm), scm, pos, FUNC_NAME); \
cvar = SCM_ICHR(scm); } while (0)