aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32fns.c
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2006-11-04 12:21:29 +0000
committerEli Zaretskii <[email protected]>2006-11-04 12:21:29 +0000
commit06c72792d6a1467f41e422966da32d885fd9cc45 (patch)
tree8eea421c72e28901369485680a9a4c32ed6af3f5 /src/w32fns.c
parent9c9f0081654fdda21744a23dbb5fe17dc55dfc44 (diff)
(w32_createwindow): Remove code for handling -geometry command line option and
`initial-frame-alist' which is superfluous after the last change to `w32_createwindow'.
Diffstat (limited to 'src/w32fns.c')
-rw-r--r--src/w32fns.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index f7e211649e..269e357f0a 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -2080,32 +2080,7 @@ w32_createwindow (f)
if (!hprevinst)
{
- Lisp_Object ifa;
-
w32_init_class (hinst);
-
- /* Handle the -geometry command line option and the geometry
- settings in the registry. They are decoded and put into
- initial-frame-alist by w32-win.el:x-handle-geometry. */
- ifa = Fsymbol_value (intern ("initial-frame-alist"));
- if (CONSP (ifa))
- {
- Lisp_Object lt = Fassq (Qleft, ifa);
- Lisp_Object tp = Fassq (Qtop, ifa);
-
- if (!NILP (lt))
- {
- lt = XCDR (lt);
- if (INTEGERP (lt))
- left = lt;
- }
- if (!NILP (tp))
- {
- tp = XCDR (tp);
- if (INTEGERP (tp))
- top = tp;
- }
- }
}
if (f->size_hint_flags & USPosition || f->size_hint_flags & PPosition)