From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Will Parsons Newsgroups: gmane.emacs.help Subject: Re: making Emacs 22 startup like Emacs 21 Date: 10 Nov 2007 19:19:42 GMT Message-ID: References: <87ejey4jqn.fsf@gmx.de> Reply-To: ellenophilos@yahoo.com 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 1194723649 16365 80.91.229.12 (10 Nov 2007 19:40:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 10 Nov 2007 19:40:49 +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 20:40:51 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 1IqwCA-0005JE-OO for geh-help-gnu-emacs@m.gmane.org; Sat, 10 Nov 2007 20:40:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IqwBy-0000LL-QA for geh-help-gnu-emacs@m.gmane.org; Sat, 10 Nov 2007 14:40:30 -0500 Original-Path: shelby.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 18 Original-X-Trace: individual.net j58XqH8oSnxe+OrySD4M4AVuIkXvlxat6EtQcpjm/rm5W+SnLt Cancel-Lock: sha1:fgCAHEAbSAgj6hMtBWwsjKqwXh0= User-Agent: slrn/0.9.8.1 (FreeBSD) Original-Xref: shelby.stanford.edu gnu.emacs.help:153665 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:49125 Archived-At: Sven Joachim wrote: > 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)) > Thanks, that works for me. - Will