From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: sandipchitale@yahoo.com (Sandip Chitale) Newsgroups: gmane.emacs.help Subject: Re: preset the position of new frame under mac os x Date: 6 Nov 2003 09:52:06 -0800 Organization: http://groups.google.com Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <2IPob.77706$e01.257998@attbi_s02> NNTP-Posting-Host: deer.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1068143062 4997 80.91.224.253 (6 Nov 2003 18:24:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 6 Nov 2003 18:24:22 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 06 19:24:19 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AHonq-000796-00 for ; Thu, 06 Nov 2003 19:24:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AHoZI-0000Fh-OW for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Nov 2003 13:09:16 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!postnews1.google.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 55 Original-NNTP-Posting-Host: 208.135.53.4 Original-X-Trace: posting.google.com 1068141127 31772 127.0.0.1 (6 Nov 2003 17:52:07 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Thu, 6 Nov 2003 17:52:07 +0000 (UTC) Original-Xref: shelby.stanford.edu gnu.emacs.help:117926 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:13866 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:13866 The variable: default-frame-alist and initial-frame-alist are customized variables. Therefore you need to set their values using M-x customize-variable RET default-frame-alist RET and M-x customize-variable RET initial-frame-alist RET and save the customization. May work. "Leo" wrote in message news:... > "Hugh Wolf" wrote in message > news:2IPob.77706$e01.257998@attbi_s02... > > > > The 'left entry of default-frame-alist works fine for me in osx. > > > thanks hugo. > > i have tried that as well, but cannot make it work. here's the part of my > .emacs file: > > (setq default-frame-alist > ;; standard staff > '((tool-bar-lines . 0) > (foreground-color . "black") > (background-color . "white") > (menu-bar-lines . 1) > ;; my staff: > (font . "-apple-monaco-medium-r-*--*-140-*-*-*-*-mac-roman") ;; mac > (top . 15) (left . 250) > (width . 81) (height . 48) > (cursor-color . "Black"))) > > (setq initial-frame-alist > '((top . 0) (left . 5) > (width . 84) (height . 50) ;; mac > )) > > this settings should make the first frame at the left and the second frame > at the right of the screen. unfortunatly both screen appear on the left... > :-( > > what do i do wrong?