aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.c
diff options
context:
space:
mode:
authorKaroly Lorentey <[email protected]>2004-11-22 11:06:39 +0000
committerKaroly Lorentey <[email protected]>2004-11-22 11:06:39 +0000
commit71925ac335f7c3b1fd97fba98cb5b9b4f03a6e23 (patch)
tree63f61c3bebc83c114c16f31dd4ac2b9c0fe17c7d /src/frame.c
parente417405015c93c81641f5c4a33ec898b5c353772 (diff)
parent83aebfe62204109f19ef7dcca5429c1ddad21c57 (diff)
Merged in changes from CVS trunk.
Patches applied: * [email protected]/emacs--cvs-trunk--0--patch-694 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-695 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-696 Merge from gnus--rel--5.10 * [email protected]/emacs--cvs-trunk--0--patch-697 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-698 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-699 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-700 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-701 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-702 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-703 Merge from gnus--rel--5.10 * [email protected]/emacs--cvs-trunk--0--patch-704 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-705 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-706 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-707 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-708 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-709 Update from CVS: src/indent.c (Fvertical_motion): Fix last change. * [email protected]/emacs--cvs-trunk--0--patch-710 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-711 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-712 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-713 Update from CVS * [email protected]/gnus--rel--5.10--patch-72 Update from CVS * [email protected]/gnus--rel--5.10--patch-73 Merge from emacs--cvs-trunk--0 git-archimport-id: [email protected]/emacs--multi-tty--0--patch-268
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 80d1876ef1..660b9db431 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -398,7 +398,8 @@ make_frame (mini_p)
f->selected_window = root_window;
/* Make sure this window seems more recently used than
a newly-created, never-selected window. */
- XSETFASTINT (XWINDOW (f->selected_window)->use_time, ++window_select_count);
+ ++window_select_count;
+ XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
f->default_face_done_p = 0;