From 5ced6d26ad0de5bcbb025ab5d367935063d2c749 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 1 May 2000 03:01:39 +0000 Subject: [PATCH] Undo previous change. --- v7/src/edwin/win32.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/edwin/win32.scm b/v7/src/edwin/win32.scm index 4f440acda..70aa3b919 100644 --- a/v7/src/edwin/win32.scm +++ b/v7/src/edwin/win32.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: win32.scm,v 1.12 2000/04/30 21:52:35 cph Exp $ +;;; $Id: win32.scm,v 1.13 2000/05/01 03:01:39 cph Exp $ ;;; ;;; Copyright (c) 1994-2000 Massachusetts Institute of Technology ;;; @@ -275,11 +275,11 @@ (set-window-pos handle 0 0 0 (- (rect/right rect) (rect/left rect)) (- (rect/bottom rect) (rect/top rect)) - (+ SWP_NOMOVE SWP_NOZORDER SWP_NOREDRAW))))) + (+ SWP_NOMOVE SWP_NOZORDER))))) (define (win32-screen/set-position! screen x y) (set-window-pos (screen->handle screen) 0 x y 0 0 - (+ SWP_NOSIZE SWP_NOZORDER SWP_NOREDRAW))) + (+ SWP_NOSIZE SWP_NOZORDER))) (define (win32-screen/get-position screen) (let ((rect (make-rect 0 0 0 0))) -- 2.25.1