mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 06:41:13 +02:00
* Various small doc fixes.
This commit is contained in:
parent
a714e0ebe2
commit
b56b5983a3
3 changed files with 12 additions and 6 deletions
|
@ -9,7 +9,7 @@ in the libguile C source change.
|
||||||
- README is this file.
|
- README is this file.
|
||||||
|
|
||||||
- docstring.el is a helpful Emacs Lisp library (see source for
|
- 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-process-module' and
|
||||||
`docstring-ediff-this-line'.
|
`docstring-ediff-this-line'.
|
||||||
|
|
||||||
|
|
|
@ -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>
|
2001-11-08 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
* guile.texi (Top): Added new chapter `Programming Options'.
|
* guile.texi (Top): Added new chapter `Programming Options'.
|
||||||
|
|
|
@ -1415,7 +1415,7 @@ Return @code{#t} iff @var{obj} is a string, else @code{#f}.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn primitive string-null? str
|
@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.
|
@code{#f} otherwise.
|
||||||
@lisp
|
@lisp
|
||||||
(string-null? "") @result{} #t
|
(string-null? "") @result{} #t
|
||||||
|
@ -1691,8 +1691,8 @@ equal to @var{s2} regardless of case.
|
||||||
@node String Searching
|
@node String Searching
|
||||||
@subsection String Searching
|
@subsection String Searching
|
||||||
|
|
||||||
When searching the index of a character in a string, these procedures
|
When searching for the index of a character in a string, these
|
||||||
can be used.
|
procedures can be used.
|
||||||
|
|
||||||
@deffn primitive string-index str chr [frm [to]]
|
@deffn primitive string-index str chr [frm [to]]
|
||||||
Return the index of the first occurrence of @var{chr} in
|
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
|
@end deffn
|
||||||
|
|
||||||
@deffn primitive struct? x
|
@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}.
|
@code{#f}.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
|
@ -3795,7 +3795,7 @@ Return the vtable structure that describes the type of @var{struct}.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn primitive struct-vtable? x
|
@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
|
@end deffn
|
||||||
|
|
||||||
If you have a vtable structure, @code{V}, you can create an instance of
|
If you have a vtable structure, @code{V}, you can create an instance of
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue