From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: File modes facilities. Date: Fri, 21 Oct 2005 18:19:49 -0400 Message-ID: References: <87hdbdxo94.fsf@mahaena.lrde> <877jc92o37.fsf@mahaena.lrde> <17238.50816.352274.312799@kahikatea.snap.net.nz> <87u0fd9let.fsf@mahaena.lrde> <87oe5jmu9j.fsf-monnier+emacs@gnu.org> <87y84n81q2.fsf@mahaena.lrde> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1129933373 3345 80.91.229.2 (21 Oct 2005 22:22:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 21 Oct 2005 22:22:53 +0000 (UTC) Cc: schwab@suse.de, michael.cadilhac-@t-lrde.epita.fr, emacs-devel@gnu.org, monnier@iro.umontreal.ca, eliz@gnu.org, snogglethorpe@gmail.com, miles@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 22 00:22:50 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ET5GH-0002QJ-Rh for ged-emacs-devel@m.gmane.org; Sat, 22 Oct 2005 00:21:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ET5GH-0003cr-5j for ged-emacs-devel@m.gmane.org; Fri, 21 Oct 2005 18:21:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ET5Ex-00038c-5Q for emacs-devel@gnu.org; Fri, 21 Oct 2005 18:19:55 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ET5Ew-00038D-GT for emacs-devel@gnu.org; Fri, 21 Oct 2005 18:19:54 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ET5Ew-000389-Bo for emacs-devel@gnu.org; Fri, 21 Oct 2005 18:19:54 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ET5Ew-0005X6-D1 for emacs-devel@gnu.org; Fri, 21 Oct 2005 18:19:54 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1ET5Er-0003lR-Cd; Fri, 21 Oct 2005 18:19:49 -0400 Original-To: storm@cua.dk (Kim F. Storm) In-reply-to: (storm@cua.dk) 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:44538 Archived-At: *** callint.c 14 Aug 2005 14:47:25 +0200 1.140 --- callint.c 21 Oct 2005 16:38:22 +0200 *************** *** 346,351 **** --- 346,356 ---- function = wrong_type_argument (Qcommandp, function); goto retry; } + else if (*string == '#') + { + string = 0; + goto get_interactive_form; + } This would be much cleaner (and easier to use) if it read the Lisp expression out of the string itself, after the #. But as I said, I'd rather not install this now. The new feature for setting file modes should also wait till after the release.