aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2012-06-22 15:28:28 +0800
committerChong Yidong2012-06-22 15:28:28 +0800
commitb6a92dfe32692a3a0d4023290ecfe169537c31a2 (patch)
tree4657bd89e5b873060d36292ab90553e63a176ae1 /src
parenta4c8dd51c1ca62fbfc4fce54a4e90f6604d073af (diff)
downloademacs-b6a92dfe32692a3a0d4023290ecfe169537c31a2.tar.gz
emacs-b6a92dfe32692a3a0d4023290ecfe169537c31a2.zip
* xdisp.c (x_consider_frame_title): Revert last change.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xdisp.c6
2 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 128b05e0e7a..a5e10fe9473 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-06-22 Chong Yidong <cyd@gnu.org>
2
3 * xdisp.c (x_consider_frame_title): Revert last change.
4
12012-06-22 Eli Zaretskii <eliz@gnu.org> 52012-06-22 Eli Zaretskii <eliz@gnu.org>
2 6
3 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled 7 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
diff --git a/src/xdisp.c b/src/xdisp.c
index dafd22a3fb3..a0739eb5522 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -10967,6 +10967,8 @@ store_mode_line_noprop (const char *string, int field_width, int precision)
10967 Frame Titles 10967 Frame Titles
10968 ***********************************************************************/ 10968 ***********************************************************************/
10969 10969
10970#ifdef HAVE_WINDOW_SYSTEM
10971
10970/* Set the title of FRAME, if it has changed. The title format is 10972/* Set the title of FRAME, if it has changed. The title format is
10971 Vicon_title_format if FRAME is iconified, otherwise it is 10973 Vicon_title_format if FRAME is iconified, otherwise it is
10972 frame_title_format. */ 10974 frame_title_format. */
@@ -11037,6 +11039,8 @@ x_consider_frame_title (Lisp_Object frame)
11037 } 11039 }
11038} 11040}
11039 11041
11042#endif /* not HAVE_WINDOW_SYSTEM */
11043
11040 11044
11041/*********************************************************************** 11045/***********************************************************************
11042 Menu Bars 11046 Menu Bars
@@ -11063,6 +11067,7 @@ prepare_menu_bars (void)
11063 /* Update all frame titles based on their buffer names, etc. We do 11067 /* Update all frame titles based on their buffer names, etc. We do
11064 this before the menu bars so that the buffer-menu will show the 11068 this before the menu bars so that the buffer-menu will show the
11065 up-to-date frame titles. */ 11069 up-to-date frame titles. */
11070#ifdef HAVE_WINDOW_SYSTEM
11066 if (windows_or_buffers_changed || update_mode_lines) 11071 if (windows_or_buffers_changed || update_mode_lines)
11067 { 11072 {
11068 Lisp_Object tail, frame; 11073 Lisp_Object tail, frame;
@@ -11075,6 +11080,7 @@ prepare_menu_bars (void)
11075 x_consider_frame_title (frame); 11080 x_consider_frame_title (frame);
11076 } 11081 }
11077 } 11082 }
11083#endif /* HAVE_WINDOW_SYSTEM */
11078 11084
11079 /* Update the menu bar item lists, if appropriate. This has to be 11085 /* Update the menu bar item lists, if appropriate. This has to be
11080 done before any actual redisplay or generation of display lines. */ 11086 done before any actual redisplay or generation of display lines. */