diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-06-15 03:54:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-06-15 03:54:06 +0000 |
commit | 565620a54d14465fe7c2fe912a41eb7a36d93d10 (patch) | |
tree | 394b31f26d4fe0c31d80d674398dc45979d775b2 /src/frame.c | |
parent | c389a86d1ca88edab4675b1bd8535d405ed06d66 (diff) | |
download | emacs-565620a54d14465fe7c2fe912a41eb7a36d93d10.tar.gz |
Put stdio.h after config.h.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c index f843345d936..5face5086a9 100644 --- a/src/frame.c +++ b/src/frame.c @@ -17,9 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <stdio.h> - #include <config.h> + +#include <stdio.h> #include "lisp.h" #include "frame.h" #include "termhooks.h" @@ -1055,6 +1055,9 @@ If omitted, FRAME defaults to the currently selected frame.") } #endif + /* Make menu bar update for the Buffers and Frams menus. */ + windows_or_buffers_changed++; + return frame; } @@ -1093,6 +1096,9 @@ but if the second optional argument FORCE is non-nil, you may do so.") x_make_frame_invisible (XFRAME (frame)); #endif + /* Make menu bar update for the Buffers and Frams menus. */ + windows_or_buffers_changed++; + return Qnil; } @@ -1126,6 +1132,9 @@ If omitted, FRAME defaults to the currently selected frame.") x_iconify_frame (XFRAME (frame)); #endif + /* Make menu bar update for the Buffers and Frams menus. */ + windows_or_buffers_changed++; + return Qnil; } |