* Doc updates for removal of previously deprecated features.
authorNeil Jerram <neil@ossau.uklinux.net>
Sun, 29 Apr 2001 23:01:07 +0000 (23:01 +0000)
committerNeil Jerram <neil@ossau.uklinux.net>
Sun, 29 Apr 2001 23:01:07 +0000 (23:01 +0000)
* More detailed AUTHORS description for Jim Blandy.

NEWS
doc/AUTHORS
doc/ChangeLog
doc/deprecated.texi
doc/scheme-io.texi
ice-9/ChangeLog

diff --git a/NEWS b/NEWS
index b852cce..9a0b7cb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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:
index 13fc1de..8c09603 100644 (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
index b94443f..dd041c2 100644 (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>
index 0b2fdd3..f569e89 100644 (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
index 69d005c..cc7b4b8 100644 (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:
index ba0e2da..b3f721f 100644 (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.