From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Arjen Wiersma Newsgroups: gmane.emacs.help Subject: Re: Emacs and several windows Date: Tue, 24 Jul 2007 12:33:40 +0200 Message-ID: References: <1185272277.798198.192270@m3g2000hsh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1185287923 10996 80.91.229.12 (24 Jul 2007 14:38:43 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 24 Jul 2007 14:38:43 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jul 24 16:38:42 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IDLX7-0005zC-0G for geh-help-gnu-emacs@m.gmane.org; Tue, 24 Jul 2007 16:38:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IDLX6-0007nB-Kx for geh-help-gnu-emacs@m.gmane.org; Tue, 24 Jul 2007 10:38:40 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!news.giganews.com.POSTED!not-for-mail Original-NNTP-Posting-Date: Tue, 24 Jul 2007 05:33:43 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (darwin) Cancel-Lock: sha1:BLq2XZmmGhNNaJBpUz8+hiuNieI= Original-Lines: 44 X-Usenet-Provider: http://www.giganews.com Original-X-Trace: sv3-lEPbsAFBkipklCx+rm/vUBzHqxHE9xZkLrs13FU+EKCARpZvJI17Dfe8txFFhP7s+dgugZX7Hi+PDD4!46C4qZrXaXgo2bFVSNvcuUe/a2ifjX/8yFjj18sQOhHHpmfaFw== Original-X-Complaints-To: abuse@giganews.com X-DMCA-Notifications: http://www.giganews.com/info/dmca.html X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.35 Original-Xref: shelby.stanford.edu gnu.emacs.help:150345 X-Mailman-Approved-At: Tue, 24 Jul 2007 10:38:26 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:45956 Archived-At: vincent.marguerit@gmail.com writes: > I use Emacs under Mac OS X and I don't know how to open several > windows of Emacs, when I click on the Emacs icon it does not open me > another window it put the current Emacs window to the front. Try ,----[ C-h f make-frame RET ] | make-frame is an interactive compiled Lisp function in `frame.el'. | (make-frame &optional parameters) | | Return a newly created frame displaying the current buffer. | Optional argument parameters is an alist of parameters for the new frame. | Each element of parameters should have the form (NAME . VALUE), for example: | | (name . STRING) The frame should be named STRING. | | (width . NUMBER) The frame should be NUMBER characters in width. | (height . NUMBER) The frame should be NUMBER text lines high. | | You cannot specify either `width' or `height', you must use neither or both. | | (minibuffer . t) The frame should have a minibuffer. | (minibuffer . nil) The frame should have no minibuffer. | (minibuffer . only) The frame should contain only a minibuffer. | (minibuffer . WINDOW) The frame should use WINDOW as its minibuffer window. | | Before the frame is created (via `frame-creation-function'), functions on the | hook `before-make-frame-hook' are run. After the frame is created, functions | on `after-make-frame-functions' are run with one arg, the newly created frame. | | This function itself does not make the new frame the selected frame. | The previously selected frame remains selected. However, the | window system may select the new frame for its own reasons, for | instance if the frame appears under the mouse pointer and your | setup is for focus to follow the pointer. | | [back] `---- Regards, Arjen