From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sven Joachim Newsgroups: gmane.emacs.help Subject: Re: making Emacs 22 startup like Emacs 21 Date: Sat, 10 Nov 2007 08:56:00 +0100 Message-ID: <87ejey4jqn.fsf@gmx.de> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1194684064 29492 80.91.229.12 (10 Nov 2007 08:41:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 10 Nov 2007 08:41:04 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 10 09:41:08 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 1Iqltr-000721-Lu for geh-help-gnu-emacs@m.gmane.org; Sat, 10 Nov 2007 09:41:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iqltf-0003An-L5 for geh-help-gnu-emacs@m.gmane.org; Sat, 10 Nov 2007 03:40:55 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!syros.belnet.be!news.belnet.be!feeder.news-service.com!216.196.110.148.MISMATCH!border1.nntp.ams.giganews.com!nntp.giganews.com!uio.no!quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 16 Original-NNTP-Posting-Host: p54864118.dip.t-dialin.net Original-X-Trace: quimby.gnus.org 1194681253 353 84.134.65.24 (10 Nov 2007 07:54:13 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Sat, 10 Nov 2007 07:54:13 +0000 (UTC) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:HjkX7ljur5J/hz1pq1LWzr1G/Jg= Original-Xref: shelby.stanford.edu gnu.emacs.help:153660 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:49120 Archived-At: Will Parsons writes: > I find the new Emacs 22 startup behaviour quite annoying in that it puts > up a splash screen even when Emacs is invoked with a file name. I've > found the inhibit-splash-screen variable to inhibit the splash screen > entirely, but I'd like to keep the splash screen if Emacs is invoked > without arguments - just inhibit it if a file is specified. Is there > any way to get this to work like Emacs 21? I've just put these 2¢ into my .emacs, which seem to do the trick: (when (> (length command-line-args) 1) (setq inhibit-splash-screen t)) Cheers, Sven