aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Rudalics2007-12-29 19:20:36 +0000
committerMartin Rudalics2007-12-29 19:20:36 +0000
commit1da8a03154c40b46938d9c65375a2b3f8c09bddd (patch)
treeabee88d8fd60825dda87f3a3b59e19b7be64ccb6 /src
parent484c1b1f1437aedf152d55be8c6654c30aad181c (diff)
downloademacs-1da8a03154c40b46938d9c65375a2b3f8c09bddd.tar.gz
emacs-1da8a03154c40b46938d9c65375a2b3f8c09bddd.zip
Make copy of frame parameters because the original parameters
are in pure storage now.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/w32fns.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index aca22996d14..ec82db08df4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12007-12-29 Martin Rudalics <rudalics@gmx.at>
2
3 * w32fns.c (Fx_create_frame): Make copy of frame parameters
4 because the original parameters are in pure storage now.
5
12007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 62007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 7
3 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area. 8 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
diff --git a/src/w32fns.c b/src/w32fns.c
index 497010e9ad3..6b005546a47 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -4166,6 +4166,10 @@ This function is an internal primitive--use `make-frame' instead. */)
4166 4166
4167 check_w32 (); 4167 check_w32 ();
4168 4168
4169 /* Make copy of frame parameters because the original is in pure
4170 storage now. */
4171 parameters = Fcopy_alist (parameters);
4172
4169 /* Use this general default value to start with 4173 /* Use this general default value to start with
4170 until we know if this frame has a specified name. */ 4174 until we know if this frame has a specified name. */
4171 Vx_resource_name = Vinvocation_name; 4175 Vx_resource_name = Vinvocation_name;