git.fiddlerwoaroof.com
Browse code

2006-10-16 Kevin Layer <layer@gemini.franz.com>

layer authored on 16/10/2006 17:35:38
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+2006-10-16  Kevin Layer  <layer@gemini.franz.com>
2
+
3
+	* smtp.cl: bug16475: remove stray (force-output t)
4
+
1 5
 2006-08-17  Kevin Layer  <layer@gemini>
2 6
 
3 7
     from dancy:
... ...
@@ -1,8 +1,9 @@
1 1
 #+(version= 8 0)
2
-(sys:defpatch "smtp" 3
2
+(sys:defpatch "smtp" 4
3 3
   "v1: send-letter w/attachments; send-smtp* can take streams;
4 4
 v2: add :port argument to send-letter, send-smtp, send-smtp-auth;
5
-v3: fix incompatibility introduced in v2."
5
+v3: fix incompatibility introduced in v2;
6
+v4: remove stray force-output of t."
6 7
   :type :system
7 8
   :post-loadable t)
8 9
 
... ...
@@ -40,7 +41,7 @@ v4: fix incompatibility introduced in v3."
40 41
 ;; Suite 330, Boston, MA  02111-1307  USA
41 42
 ;;
42 43
 ;;
43
-;; $Id: smtp.cl,v 1.19 2006/05/24 20:38:42 layer Exp $
44
+;; $Id: smtp.cl,v 1.20 2006/10/16 17:35:38 layer Exp $
44 45
 
45 46
 ;; Description:
46 47
 ;;   send mail to an smtp server.  See rfc821 for the spec.
... ...
@@ -324,7 +325,10 @@ Attachments must be filenames, streams, or mime-part-constructed, not ~s"
324 325
 			 
325 326
 	    (t (error "message not sent: ~s" msg)))
326 327
 
327
-	  (force-output t)
328
+	  ;; Hmmmm, this is not good.  Perhaps force-output on
329
+	  ;; *error-output* is what was intended?  I'm pretty sure that's
330
+	  ;; *not needed.
331
+	  #+ignore (force-output t)
328 332
 	  
329 333
 	  (smtp-command sock "QUIT")
330 334
 	  (response-case (sock msg)