From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tomasz Gajewski Newsgroups: gmane.emacs.devel Subject: Re: Setting initial frame's parameters before its creation Date: Sun, 03 Mar 2013 19:49:27 +0100 Message-ID: <87ip5871zc.fsf@tt.com.pl> References: <87y5e6arm5.fsf@tt.com.pl> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1362336583 940 80.91.229.3 (3 Mar 2013 18:49:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 3 Mar 2013 18:49:43 +0000 (UTC) Cc: Stefan Monnier , Leo Liu To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Mar 03 19:50:07 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UCDz3-0002ZJ-81 for ged-emacs-devel@m.gmane.org; Sun, 03 Mar 2013 19:50:05 +0100 Original-Received: from localhost ([::1]:37878 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCDyh-0006f4-W5 for ged-emacs-devel@m.gmane.org; Sun, 03 Mar 2013 13:49:43 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:49732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCDye-0006ex-2Z for emacs-devel@gnu.org; Sun, 03 Mar 2013 13:49:41 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCDyc-0002vu-TC for emacs-devel@gnu.org; Sun, 03 Mar 2013 13:49:40 -0500 Original-Received: from mx4.wp.pl ([212.77.101.8]:65471) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCDyc-0002vW-I2 for emacs-devel@gnu.org; Sun, 03 Mar 2013 13:49:38 -0500 Original-Received: (wp-smtpd smtp.wp.pl 31111 invoked from network); 3 Mar 2013 19:49:28 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=wp.pl; s=1024a; t=1362336568; bh=mjistRMsKNqXUy4jHMzFKwkFJ1B0OzsjC6o3+X9/QK8=; h=From:To:Cc:Subject; b=thq4yvLzce0HMBspxZz2MNPow9qQSLbpntoXPAkkHGfYhdHEHaFMddwbW5vkQcfmm HVeuMQ7uqn9O+nyu3dIlO0ET2moiWiLQhw9u/i13csvOB+kqICNTT2G+Ecm08DiywM LZT0zQidroyAVheaH1DyrpFPdzr2x+HxuKYRE4SE= Original-Received: from unknown (HELO vitiris) (tomga@[195.191.184.29]) (envelope-sender ) by smtp.wp.pl (WP-SMTPD) with AES128-SHA encrypted SMTP for ; 3 Mar 2013 19:49:28 +0100 In-Reply-To: (Didier Verna's message of "Sun, 03 Mar 2013 11:39:01 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) X-WP-AV: skaner antywirusowy poczty Wirtualnej Polski S. A. X-WP-SPAM: NO 0000000 [cbMU] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 212.77.101.8 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:157496 Archived-At: Didier Verna writes: > Tomasz Gajewski wrote: > >> Or maybe there is some other solution to this that I'm not aware of? > > Why don't you just > > ;; Put Custom settings elsewhere and load them now: > (setq custom-file "~/.emacs.d/custom.el") > (load custom-file) > > in your init file ? How would it help me to avoid evaluating elisp site init file before evaluating my .emacs. Anything I could write in .emacs was just too late. Doxymacs package in debian caused loading eieio before my code in .emacs was evaluated. Maybe I could run emacs with -no-site-file and later load it somehow but I do not consider this a clean solution. Regards Tomasz Gajewski