emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116716: Unconditionally set visibility to 1 when re


From: Martin Rudalics
Subject: [Emacs-diffs] trunk r116716: Unconditionally set visibility to 1 when restoring frame size (Bug#16967).
Date: Mon, 10 Mar 2014 10:31:26 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116716
revision-id: address@hidden
parent: address@hidden
committer: martin rudalics <address@hidden>
branch nick: trunk
timestamp: Mon 2014-03-10 11:31:13 +0100
message:
  Unconditionally set visibility to 1 when restoring frame size (Bug#16967).
  
  * w32term.c (w32_read_socket): In SIZE_RESTORED case
  unconditionally set visibility of frame to 1.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/w32term.c                  w32term.c-20091113204419-o5vbwnq5f7feedwu-950
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-03-09 11:36:51 +0000
+++ b/src/ChangeLog     2014-03-10 10:31:13 +0000
@@ -1,3 +1,8 @@
+2014-03-10  Martin Rudalics  <address@hidden>
+
+       * w32term.c (w32_read_socket): In SIZE_RESTORED case
+       unconditionally set visibility of frame to 1.
+
 2014-03-09  Martin Rudalics  <address@hidden>
 
        * xdisp.c (Fwindow_text_pixel_size): Adjust doc-string.

=== modified file 'src/w32term.c'
--- a/src/w32term.c     2014-02-04 07:36:58 +0000
+++ b/src/w32term.c     2014-03-10 10:31:13 +0000
@@ -4684,8 +4684,7 @@
                  {
                    bool iconified = FRAME_ICONIFIED_P (f);
 
-                   if (iconified)
-                     SET_FRAME_VISIBLE (f, 1);
+                   SET_FRAME_VISIBLE (f, 1);
                    SET_FRAME_ICONIFIED (f, 0);
 
                    /* wait_reading_process_output will notice this


reply via email to

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