summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--doc/AUTHORS4
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/deprecated.texi9
-rw-r--r--doc/scheme-io.texi5
-rw-r--r--ice-9/ChangeLog1
6 files changed, 10 insertions, 16 deletions
diff --git a/NEWS b/NEWS
index b852cce58..9a0b7cb78 100644
--- 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:
diff --git a/doc/AUTHORS b/doc/AUTHORS
index 13fc1dede..8c09603e1 100644
--- a/doc/AUTHORS
+++ b/doc/AUTHORS
@@ -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
diff --git a/doc/ChangeLog b/doc/ChangeLog
index b94443f5c..dd041c2bd 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -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>
diff --git a/doc/deprecated.texi b/doc/deprecated.texi
index 0b2fdd30a..f569e89fa 100644
--- a/doc/deprecated.texi
+++ b/doc/deprecated.texi
@@ -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
diff --git a/doc/scheme-io.texi b/doc/scheme-io.texi
index 69d005c4f..cc7b4b848 100644
--- a/doc/scheme-io.texi
+++ b/doc/scheme-io.texi
@@ -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:
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog
index ba0e2dada..b3f721fab 100644
--- a/ice-9/ChangeLog
+++ b/ice-9/ChangeLog
@@ -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.