1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

* Various small doc fixes.

This commit is contained in:
Neil Jerram 2001-11-13 00:25:46 +00:00
parent a714e0ebe2
commit b56b5983a3
3 changed files with 12 additions and 6 deletions

View file

@ -9,7 +9,7 @@ in the libguile C source change.
- README is this file.
- docstring.el is a helpful Emacs Lisp library (see source for
customziation). The two key entry points are:
customization). The two key entry points are:
`docstring-process-module' and
`docstring-ediff-this-line'.

View file

@ -1,3 +1,9 @@
2001-11-12 Neil Jerram <neil@ossau.uklinux.net>
* scheme-data.texi (Vtables, Structure Basics): Automatic doc
updates for struct? and struct-vtable?.
(String Searching): Add missing "for". Thanks to Scott Lenser.
2001-11-08 Neil Jerram <neil@ossau.uklinux.net>
* guile.texi (Top): Added new chapter `Programming Options'.

View file

@ -1415,7 +1415,7 @@ Return @code{#t} iff @var{obj} is a string, else @code{#f}.
@end deffn
@deffn primitive string-null? str
Return @code{#t} if @var{str}'s length is nonzero, and
Return @code{#t} if @var{str}'s length is zero, and
@code{#f} otherwise.
@lisp
(string-null? "") @result{} #t
@ -1691,8 +1691,8 @@ equal to @var{s2} regardless of case.
@node String Searching
@subsection String Searching
When searching the index of a character in a string, these procedures
can be used.
When searching for the index of a character in a string, these
procedures can be used.
@deffn primitive string-index str chr [frm [to]]
Return the index of the first occurrence of @var{chr} in
@ -3762,7 +3762,7 @@ For more information, see the documentation for @code{make-vtable-vtable}.
@end deffn
@deffn primitive struct? x
Return @code{#t} iff @var{obj} is a structure object, else
Return @code{#t} iff @var{x} is a structure object, else
@code{#f}.
@end deffn
@ -3795,7 +3795,7 @@ Return the vtable structure that describes the type of @var{struct}.
@end deffn
@deffn primitive struct-vtable? x
Return @code{#t} iff obj is a vtable structure.
Return @code{#t} iff @var{x} is a vtable structure.
@end deffn
If you have a vtable structure, @code{V}, you can create an instance of