1.0.6.1: marginally nicer "name" for socket streams
authorNikodemus Siivola <nikodemus@random-state.net>
Mon, 28 May 2007 14:07:03 +0000 (14:07 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Mon, 28 May 2007 14:07:03 +0000 (14:07 +0000)
 * "a socket" instead of "a constant string". It might be worth while
   to actually make this based on the socket-name and -peername,
   though.

NEWS
contrib/sb-bsd-sockets/sockets.lisp
version.lisp-expr

diff --git a/NEWS b/NEWS
index af347b3..0f94229 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,8 @@
 ;;;; -*- coding: utf-8; -*-
+changes in sbcl-1.0.7 relative to sbcl-1.0.6:
+  * enhancement: name of a socket-stream is now "a socket" instead of
+    "a constant string".
+
 changes in sbcl-1.0.6 relative to sbcl-1.0.5:
   * new contrib: sb-cover, an experimental code coverage tool, is included
     as a contrib module.
index 072dc07..e9fa645 100644 (file)
@@ -356,7 +356,7 @@ SB-SYS:MAKE-FD-STREAM."))
     (unless stream
       (setf stream (apply #'sb-sys:make-fd-stream
                           (socket-file-descriptor socket)
-                          :name "a constant string"
+                          :name "a socket"
                           :dual-channel-p t
                           args))
       (setf (slot-value socket 'stream) stream)
index e0147a8..8b8f470 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.6"
+"1.0.6.1"