summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-05-15 11:42:01 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-05-15 11:42:01 +0000
commitae09e7ac288fd8fd467d3278bff2e9ccbefb862d (patch)
tree581e5d77cc45f2d7052d01f342bfdd8a2e806755
parent32f1b9fd5177db13cc8d7d61a73930936b1cd98a (diff)
downloadguile-ae09e7ac288fd8fd467d3278bff2e9ccbefb862d.tar.gz
Updated the macro names for operating on characters.
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/data-rep.texi8
2 files changed, 9 insertions, 4 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 7c0d8ce38..99f3fd0aa 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
+
+ * data-rep.texi: Updated the macro names for operating on
+ characters.
+
2000-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
* api.txt: Added a first attempt for a description of the newly
diff --git a/doc/data-rep.texi b/doc/data-rep.texi
index 91a6917c9..0ac8d0336 100644
--- a/doc/data-rep.texi
+++ b/doc/data-rep.texi
@@ -46,7 +46,7 @@ by the Free Software Foundation.
@sp 10
@comment The title is printed in a large font.
@title Data Representation in Guile
-@subtitle $Id: data-rep.texi,v 1.9 2000-02-28 20:58:59 jimb Exp $
+@subtitle $Id: data-rep.texi,v 1.10 2000-05-15 11:42:01 dirk Exp $
@subtitle For use with Guile @value{VERSION}
@author Jim Blandy
@author Free Software Foundation
@@ -632,16 +632,16 @@ This function does not check for overflow.
Here are functions for operating on characters.
-@deftypefn Macro int SCM_ICHRP (SCM @var{x})
+@deftypefn Macro int SCM_CHARP (SCM @var{x})
Return non-zero iff @var{x} is a character value.
@end deftypefn
-@deftypefn Macro {unsigned int} SCM_ICHR (SCM @var{x})
+@deftypefn Macro {unsigned int} SCM_CHAR (SCM @var{x})
Return the value of @code{x} as a C character. If @var{x} is not a
Scheme character, the result is undefined.
@end deftypefn
-@deftypefn Macro SCM SCM_MAKICHR (int @var{c})
+@deftypefn Macro SCM SCM_MAKE_CHAR (int @var{c})
Given a C character @var{c}, return its representation as a Scheme
character value.
@end deftypefn