From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Brodbeck Newsgroups: gmane.emacs.help Subject: Re: making Emacs 22 startup like Emacs 21 Date: Mon, 26 Nov 2007 10:22:10 -0800 Message-ID: <58F6D29E-09CE-4008-96C4-6AD0ED15BE1B@u.washington.edu> References: <87ejey4jqn.fsf@gmx.de> <87sl3681d4.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1196101364 30088 80.91.229.12 (26 Nov 2007 18:22:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 26 Nov 2007 18:22:44 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Nov 26 19:22:52 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 1Iwibb-0002o3-2N for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Nov 2007 19:22:51 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IwibL-0003kA-RI for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Nov 2007 13:22:35 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iwib7-0003k5-Ep for help-gnu-emacs@gnu.org; Mon, 26 Nov 2007 13:22:21 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iwib6-0003jr-Q3 for help-gnu-emacs@gnu.org; Mon, 26 Nov 2007 13:22:21 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iwib6-0003jo-Mt for help-gnu-emacs@gnu.org; Mon, 26 Nov 2007 13:22:20 -0500 Original-Received: from mxout1.cac.washington.edu ([140.142.32.134]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Iwib6-0001P8-7n for help-gnu-emacs@gnu.org; Mon, 26 Nov 2007 13:22:20 -0500 Original-Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout1.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.09) with ESMTP id lAQIMDHY031441 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 26 Nov 2007 10:22:14 -0800 X-Auth-Received: from [69.91.158.215] (D-69-91-158-215.dhcp4.washington.edu [69.91.158.215]) (authenticated authid=brodbd) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.09) with ESMTP id lAQIMDY3012496 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT) for ; Mon, 26 Nov 2007 10:22:13 -0800 In-Reply-To: X-Mailer: Apple Mail (2.752.3) X-PMX-Version: 5.3.3.310218, Antispam-Engine: 2.5.2.313940, Antispam-Data: 2007.11.26.95924 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_600_699 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 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:49550 Archived-At: On Nov 21, 2007, at 11:14 PM, Kevin Rodgers wrote: > Johan Bockg=E5rd wrote: >> Better test whether there are any file visiting buffers >> (delq nil (mapcar 'buffer-file-name (buffer-list))) > > Indeed, I was looking at an old version of my ~/.emacs. Here's > what I have now: > > (catch 'inhibit-splash-screen > (dolist (buffer (buffer-list) nil) > (when (buffer-file-name buffer) > (throw 'inhibit-splash-screen t)))) Hmm, when I paste this into my .emacs I still get the splash screen, =20 even if I supply a filename on the command line. I must be doing =20 something wrong.