emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: FIX: incorrect frame positioning with fullscreen arguments under X


From: Richard Stallman
Subject: Re: FIX: incorrect frame positioning with fullscreen arguments under X
Date: Tue, 23 Oct 2007 13:54:00 -0400

Does this patch (in Emacs 22) give correct results?

*** frame.c     13 Oct 2007 09:51:54 -0400      1.340.2.3
--- frame.c     23 Oct 2007 13:39:12 -0400      
***************
*** 3922,3928 ****
        int width, height;
  
        /* It takes both for some WM:s to place it where we want */
!       window_prompting = USPosition | PPosition;
        x_fullscreen_adjust (f, &width, &height, &top, &left);
        FRAME_COLS (f) = width;
        FRAME_LINES (f) = height;
--- 3922,3928 ----
        int width, height;
  
        /* It takes both for some WM:s to place it where we want */
!       window_prompting |= USPosition | PPosition;
        x_fullscreen_adjust (f, &width, &height, &top, &left);
        FRAME_COLS (f) = width;
        FRAME_LINES (f) = height;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]