From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: [Fwd: Frame Height Different for Default Frame and Additional Frames] Date: Sun, 14 Oct 2007 12:29:06 -0400 Message-ID: References: <002501c8044b$fcc95390$6100000a@intermedinc.internal> <4701F8AC.6070900@gmx.at> <470A9D22.2040709@gmx.at> <470BF1BF.3000609@gmx.at> <470C695D.5010906@swipnet.se> <470C766C.1010503@gmx.at> <470C81BC.70909@swipnet.se> <470D38E9.1040802@gmx.at> <470DBF70.9000700@swipnet.se> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: ger.gmane.org 1192379567 13020 80.91.229.12 (14 Oct 2007 16:32:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 14 Oct 2007 16:32:47 +0000 (UTC) Cc: rudalics@gmx.at, jan.h.d@swipnet.se, emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 14 18:32:36 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Ih6OJ-0002T3-R7 for ged-emacs-devel@m.gmane.org; Sun, 14 Oct 2007 18:32:36 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ih6OC-00006y-7F for ged-emacs-devel@m.gmane.org; Sun, 14 Oct 2007 12:32:28 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ih6L0-00065C-2c for emacs-devel@gnu.org; Sun, 14 Oct 2007 12:29:10 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ih6Ky-00064a-0u for emacs-devel@gnu.org; Sun, 14 Oct 2007 12:29:08 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ih6Kx-00064V-RM for emacs-devel@gnu.org; Sun, 14 Oct 2007 12:29:07 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ih6Kx-0001fS-8v for emacs-devel@gnu.org; Sun, 14 Oct 2007 12:29:07 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1Ih6Kw-0000Iz-SB; Sun, 14 Oct 2007 12:29:06 -0400 In-reply-to: (message from Stefan Monnier on Thu, 11 Oct 2007 10:01:00 -0400) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:80850 Archived-At: > The obvious (but more difficult) would be to read all startup lisp before > creating the first frame. It's not that difficult. The first frame created is `terminal-frame' anyway and this one does not need any information from .emacs. Currently we create a second (X11, or w32, or mac, or tty) frame and delete the `terminal-frame' before reading the .emacs but we could do that later. One concern here is handling errors. Error messages that occur before the really intended frame is set up kill Emacs. That is implemented in cmd_error_internal.