Try a different fix; previous one violated the load sequence.
authorChris Hanson <org/chris-hanson/cph>
Mon, 10 Jan 2000 03:59:32 +0000 (03:59 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 10 Jan 2000 03:59:32 +0000 (03:59 +0000)
v7/src/edwin/buffrm.scm

index 955b5afcf420d0373a3880659172171ea48f554e..fc59a1e0b69b7aaa1b994f7fd418cc5b32d1c2b7 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: buffrm.scm,v 1.55 2000/01/10 03:23:41 cph Exp $
+;;; $Id: buffrm.scm,v 1.56 2000/01/10 03:59:32 cph Exp $
 ;;;
 ;;; Copyright (c) 1986, 1989-2000 Massachusetts Institute of Technology
 ;;;
@@ -313,7 +313,9 @@ Index 0 might contain \"^@\" so ascii NUL appears as ^@.
 The indices for normal printing characters usually contain a
 string containing just that character, e.g. index 65 usually contains \"A\".
 Automatically becomes local when set in any fashion."
-  (os/default-char-image-strings)
+  (if (eq? 'NT microcode-id/operating-system)
+      default-char-image-strings/ansi
+      default-char-image-strings)
   (lambda (object)
     (and (vector? object)
         (= (vector-length object) 256)
@@ -327,7 +329,7 @@ Automatically becomes local when set in any fashion."
 (let ((setup-truncate-lines!
        (lambda (buffer variable)
         variable                       ;ignore
-        (for-each window-redraw!       ;window-redraw! recaches these variables
+        (for-each window-redraw!       ;recaches these variables
           (if buffer
               (buffer-windows buffer)
               (window-list))))))