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

* Doc updates for removal of previously deprecated features.

* More detailed AUTHORS description for Jim Blandy.
This commit is contained in:
Neil Jerram 2001-04-29 23:01:07 +00:00
parent c8127e2f87
commit d72691f291
6 changed files with 10 additions and 16 deletions

2
NEWS
View file

@ -27,6 +27,8 @@ Changes since Guile 1.4:
*** scheme functions removed:
tag - no replacement.
fseek - replaced by seek.
list* - replaced by cons*.
** New SRFI modules have been added:

View file

@ -6,7 +6,9 @@
@ifset guile
@c The Guile reference and tutorial manuals were written and edited
@c largely by Mark Galassi and Jim Blandy.
@c largely by Mark Galassi and Jim Blandy. In particular, Jim wrote the
@c original tutorial on Guile's data representation and the C API for
@c accessing Guile objects.
@c Significant portions were contributed by Gary Houston (contributions
@c to posix system calls and networking, expect, I/O internals and

View file

@ -1,5 +1,10 @@
2001-04-29 Neil Jerram <neil@ossau.uklinux.net>
* deprecated.texi (Tags): Removed - deprecation expired.
* scheme-io.texi (Random Access): Removed `fseek' - deprecation
expired.
* guile.texi (Top): Add menu entry for Manual Conventions node.
2001-04-28 Neil Jerram <neil@ossau.uklinux.net>

View file

@ -3,7 +3,6 @@
@menu
* Shared And Read Only Strings::
* Tags::
@end menu
@ -136,11 +135,3 @@ ERROR: Wrong type argument (expecting STRINGP): /home/
Return @code{#t} if @var{obj} is either a string or a symbol,
otherwise return @code{#f}.
@end deffn
@node Tags
@section Tags
@deffn primitive tag x
Return an integer corresponding to the type of @var{x}. Deprecated.
@end deffn

View file

@ -304,11 +304,6 @@ that the current position of a port can be obtained using:
@end lisp
@end deffn
@deffn primitive fseek fd_port offset whence
Obsolete. Almost the same as @code{seek}, but the return value
is unspecified.
@end deffn
@deffn primitive ftell fd_port
Return an integer representing the current position of
@var{fd/port}, measured from the beginning. Equivalent to:

View file

@ -47,7 +47,6 @@
* srfi-8.scm: removed in favor of srfi/srfi-8.scm - (wasn't ever
in a production release).
>>>>>>> 1.412
2001-04-25 Keisuke Nishida <kxn30@po.cwru.edu>
* channel.scm: New file.