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: abbrev file and -batch Date: Sat, 24 Feb 2007 03:28:13 -0500 Message-ID: References: <200702231736.l1NHasRS001140@oogie-boogie.ics.uci.edu> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1172305811 20357 80.91.229.12 (24 Feb 2007 08:30:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 24 Feb 2007 08:30:11 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 24 09:30:05 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 1HKsI8-00029J-TR for ged-emacs-devel@m.gmane.org; Sat, 24 Feb 2007 09:30:05 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HKsI8-0006BB-Gp for ged-emacs-devel@m.gmane.org; Sat, 24 Feb 2007 03:30:04 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HKsHs-0006AI-IW for emacs-devel@gnu.org; Sat, 24 Feb 2007 03:29:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HKsHq-00069B-A3 for emacs-devel@gnu.org; Sat, 24 Feb 2007 03:29:47 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HKsHq-000698-5i for emacs-devel@gnu.org; Sat, 24 Feb 2007 03:29:46 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HKsHp-0005PQ-9R for emacs-devel@gnu.org; Sat, 24 Feb 2007 03:29:45 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1HKsGL-0007wH-A3; Sat, 24 Feb 2007 03:28:13 -0500 In-reply-to: <200702231736.l1NHasRS001140@oogie-boogie.ics.uci.edu> (message from Dan Nicolaescu on Fri, 23 Feb 2007 09:36:54 -0800) X-detected-kernel: 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:66730 Archived-At: The test for abbrev-file-name in startup.el can be changed from: (if (file-exists-p abbrev-file-name) to (if (and (file-exists-p abbrev-file-name) (file-readable-p abbrev-file-name)) But also, should the abbrev file even be loaded when using -batch ? I think it should not be. But maybe we should not risk changing that now. Let's install your patch instead, and make a note to turn it off entirely in the -batch case after the release. Can you install that?