emacs-devel
[Top][All Lists]
Advanced

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

Maximize frame does not work correctly in .emacs on MS Windows with CVS


From: Lennart Borgman
Subject: Maximize frame does not work correctly in .emacs on MS Windows with CVS Emacs
Date: Thu, 9 Dec 2004 18:23:05 +0100

I have in .emacs:

  (defun w32-maximize-frame ()
    "Maximize the current frame"
    (interactive)
    (w32-send-sys-command 61488))

  (defun w32-hook-frame-maximize (frame)
    ;;(server-trace "ENTERING w32-hook-frame-maximize")
    ;;(sleep-for 2)
    (when window-system
      (select-frame frame)
      (if w32-feeling-max-frames (w32-maximize-frame)))
    ;;(server-trace "EXITING w32-hook-frame-maximize")
    )

  (add-hook 'after-make-frame-functions 'w32-hook-frame-maximize)

  (w32-maximize-frame)

In CVS Emacs this first maximizes the frame (window in w32 parlor) and then
shrinks it.
Some of the time both height and width are shrinked, but often only the
height is changed. The small icon in the upper right corner still looks the
way it does when the window is maximized. The size of the window in this
strange state is not the same as when the window is "Restored" from the
upper left system-menu.

This works as it should in current Emacs.

If I use (w32-maximize-frame) later in CVS Emacs it also works as it should
(i e it maximize the window).

- Lennart





reply via email to

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