Fix mistaken reference to DEFINE-STRUCTURE type descriptor.
authorChris Hanson <org/chris-hanson/cph>
Thu, 13 Mar 2003 03:19:53 +0000 (03:19 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 13 Mar 2003 03:19:53 +0000 (03:19 +0000)
v7/src/edwin/screen.scm

index 921a2e212bdd719af5a87fe306eb57e34f5d22a9..08971851510dd0a63afeddfd99ce5fab5757a05d 100644 (file)
@@ -1,8 +1,9 @@
 #| -*-Scheme-*-
 
-$Id: screen.scm,v 1.121 2003/02/14 18:28:13 cph Exp $
+$Id: screen.scm,v 1.122 2003/03/13 03:19:53 cph Exp $
 
-Copyright 1989-2000 Massachusetts Institute of Technology
+Copyright 1987,1989,1990,1991,1992,1996 Massachusetts Institute of Technology
+Copyright 1997,1999,2000,2003 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -518,10 +519,10 @@ USA.
     (substring-move-left! string start end
                          (vector-ref (matrix-contents current-matrix) y) x)
     (cond ((line-highlights-enabled? current-matrix y)
-          (set-subline-highlights! matrix y x cursor-x face))
+          (set-subline-highlights! current-matrix y x cursor-x face))
          ((not (default-face? face))
           (enable-line-highlights! current-matrix y)
-          (set-subline-highlights! matrix y x cursor-x face)))
+          (set-subline-highlights! current-matrix y x cursor-x face)))
     (set-matrix-cursor-x! current-matrix cursor-x)
     (set-matrix-cursor-x! (screen-new-matrix screen) cursor-x)))
 \f