1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Updated the macro names for operating on characters.

This commit is contained in:
Dirk Herrmann 2000-05-15 11:42:01 +00:00
parent 32f1b9fd51
commit ae09e7ac28
2 changed files with 9 additions and 4 deletions

View file

@ -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> 2000-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
* api.txt: Added a first attempt for a description of the newly * api.txt: Added a first attempt for a description of the newly

View file

@ -46,7 +46,7 @@ by the Free Software Foundation.
@sp 10 @sp 10
@comment The title is printed in a large font. @comment The title is printed in a large font.
@title Data Representation in Guile @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} @subtitle For use with Guile @value{VERSION}
@author Jim Blandy @author Jim Blandy
@author Free Software Foundation @author Free Software Foundation
@ -632,16 +632,16 @@ This function does not check for overflow.
Here are functions for operating on characters. 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. Return non-zero iff @var{x} is a character value.
@end deftypefn @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 Return the value of @code{x} as a C character. If @var{x} is not a
Scheme character, the result is undefined. Scheme character, the result is undefined.
@end deftypefn @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 Given a C character @var{c}, return its representation as a Scheme
character value. character value.
@end deftypefn @end deftypefn