Mercurial > emacs
changeset 94713:84f10f4c61cb
(Fx_create_frame): Make a copy of frame parameters
because the original parameters are in pure storage now.
(mac_window): Remove unused params. Update callers.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Wed, 07 May 2008 06:01:08 +0000 |
parents | 349582c9a664 |
children | 7e5b32f86a4c |
files | src/ChangeLog src/macfns.c |
diffstat | 2 files changed, 10 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Wed May 07 03:45:57 2008 +0000 +++ b/src/ChangeLog Wed May 07 06:01:08 2008 +0000 @@ -1,3 +1,9 @@ +2008-05-07 Dan Nicolaescu <dann@ics.uci.edu> + + * macfns.c (Fx_create_frame): Make a copy of frame parameters + because the original parameters are in pure storage now. + (mac_window): Remove unused params. Update callers. + 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca> * lread.c (substitute_object_recurse): Use lower-level primitives.
--- a/src/macfns.c Wed May 07 03:45:57 2008 +0000 +++ b/src/macfns.c Wed May 07 06:01:08 2008 +0000 @@ -2153,10 +2153,8 @@ /* Create and set up the Mac window for frame F. */ static void -mac_window (f, window_prompting, minibuffer_only) +mac_window (f) struct frame *f; - long window_prompting; - int minibuffer_only; { BLOCK_INPUT; @@ -2410,6 +2408,8 @@ check_mac (); + parms = Fcopy_alist (parms); + /* Use this general default value to start with until we know if this frame has a specified name. */ Vx_resource_name = Vinvocation_name; @@ -2622,7 +2622,7 @@ tem = mac_get_arg (parameters, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN); f->no_split = minibuffer_only || EQ (tem, Qt); - mac_window (f, window_prompting, minibuffer_only); + mac_window (f); x_icon (f, parameters); x_make_gc (f);