From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Emacs geometry Date: Sun, 30 Jul 2006 23:41:23 +0300 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1154292103 11078 80.91.229.2 (30 Jul 2006 20:41:43 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 30 Jul 2006 20:41:43 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 30 22:41:41 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1G7I6W-0005ho-EC for ged-emacs-devel@m.gmane.org; Sun, 30 Jul 2006 22:41:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G7I6V-0004NE-9X for ged-emacs-devel@m.gmane.org; Sun, 30 Jul 2006 16:41:39 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G7I6K-0004MZ-IS for emacs-devel@gnu.org; Sun, 30 Jul 2006 16:41:28 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G7I6J-0004MG-1c for emacs-devel@gnu.org; Sun, 30 Jul 2006 16:41:28 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G7I6I-0004MD-Sx for emacs-devel@gnu.org; Sun, 30 Jul 2006 16:41:26 -0400 Original-Received: from [192.114.186.73] (helo=heller.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1G7I8o-0004lS-HE for emacs-devel@gnu.org; Sun, 30 Jul 2006 16:44:02 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-84-228-237-159.inter.net.il [84.228.237.159]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id ACT23576 (AUTH halo1); Sun, 30 Jul 2006 23:41:21 +0300 (IDT) Original-To: Ralf Angeli In-reply-to: (message from Ralf Angeli on Sun, 30 Jul 2006 22:30:14 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:57815 Archived-At: > From: Ralf Angeli > Date: Sun, 30 Jul 2006 22:30:14 +0200 > > Lisp_Object foo = Qnil; > foo = Fsymbol_value (intern ("initial-frame-alist")); > if (CONSP (foo) && Fassq (Qtop, foo) && Fassq (Qleft, foo)) > printf ("top: %d, left: %d", XCDR (Fassq (Qtop, foo)), > XCDR (Fassq (Qleft, foo))); > else > printf ("no"); > > into `w32_createwindow' and call Emacs with -g 80x30+20+10 the output > top: 80, left: 160 > appears in the shell. Interesting. And what is the value of f->param_alist at that point?