Initialize cursor X and Y of a screen matrix to 0, not #F.
authorChris Hanson <org/chris-hanson/cph>
Mon, 16 Aug 1993 08:04:03 +0000 (08:04 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 16 Aug 1993 08:04:03 +0000 (08:04 +0000)
v7/src/edwin/screen.scm

index c5e29009b28cf26714f18799f1451b7db15d6b84..9f5508e2cbced8a5e8e67bd643be3e2df1506281 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: screen.scm,v 1.102 1993/08/13 01:35:02 jawilson Exp $
+;;;    $Id: screen.scm,v 1.103 1993/08/16 08:04:03 cph Exp $
 ;;;
 ;;;    Copyright (c) 1989-93 Massachusetts Institute of Technology
 ;;;
       (set-matrix-highlight! matrix highlight)
       (set-matrix-enable! matrix enable)
       (set-matrix-highlight-enable! matrix highlight-enable))
-    (set-matrix-cursor-x! matrix false)
-    (set-matrix-cursor-y! matrix false)
+    (set-matrix-cursor-x! matrix 0)
+    (set-matrix-cursor-y! matrix 0)
     matrix))
 
 (define (set-screen-size! screen x-size y-size)