Fix access violation caused by missing test for #f.
authorChris Hanson <org/chris-hanson/cph>
Tue, 19 Dec 1995 18:18:51 +0000 (18:18 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 19 Dec 1995 18:18:51 +0000 (18:18 +0000)
v7/src/edwin/os2.scm

index f55d0caa3fd4c2703bb48c20563cc11b564c24eb..f0d751574a4c0de08bdfb58b11d098077641fb10 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: os2.scm,v 1.26 1995/10/31 08:08:14 cph Exp $
+;;;    $Id: os2.scm,v 1.27 1995/12/19 18:18:51 cph Exp $
 ;;;
 ;;;    Copyright (c) 1994-95 Massachusetts Institute of Technology
 ;;;
@@ -97,7 +97,9 @@
      (if (fix:< (string-length string) #x10000) string ""))))
 
 (define (os/interprogram-paste)
-  (convert-crlf-to-newline (os2-clipboard-read-text)))
+  (let ((text (os2-clipboard-read-text)))
+    (and text
+        (convert-crlf-to-newline text))))
 
 (define (convert-newline-to-crlf string)
   (let ((end (string-length string)))