From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: convert-standard-filename's doc Date: Sat, 29 May 2004 02:49:05 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20040529024535.C5AE.LEKTU@mi.madritel.es> References: <20040528092904.7532.JMBARRANQUERO@wke.es> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1085808835 374 80.91.224.253 (29 May 2004 05:33:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 29 May 2004 05:33:55 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sat May 29 07:33:50 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BTwTe-0000bF-00 for ; Sat, 29 May 2004 07:33:50 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BTwTe-00040b-00 for ; Sat, 29 May 2004 07:33:50 +0200 Original-Received: from [127.0.0.1] (helo=mailman.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BTwTi-00023c-6n for emacs-devel@quimby.gnus.org; Sat, 29 May 2004 01:33:54 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BTwTZ-00021V-GD for emacs-devel@gnu.org; Sat, 29 May 2004 01:33:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BTwTX-0001zW-A7 for emacs-devel@gnu.org; Sat, 29 May 2004 01:33:44 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BTwTX-0001zT-64 for emacs-devel@gnu.org; Sat, 29 May 2004 01:33:43 -0400 Original-Received: from [199.232.41.8] (helo=mx20.gnu.org) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1BTw44-0001cs-DO for emacs-devel@gnu.org; Sat, 29 May 2004 01:07:24 -0400 Original-Received: from [62.81.186.19] (helo=smtp09.retemail.es) by mx20.gnu.org with esmtp (Exim 4.34) id 1BTs6g-0006qx-GY for emacs-devel@gnu.org; Fri, 28 May 2004 20:53:51 -0400 Original-Received: from [127.0.0.1] ([213.37.34.123]) by smtp09.retemail.es (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with ESMTP id <20040529004903.KRXF1181.smtp09.retemail.es@[127.0.0.1]> for ; Sat, 29 May 2004 02:49:03 +0200 Original-To: emacs-devel@gnu.org In-Reply-To: X-Mailer: Becky! ver. 2.09.01 [en] X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:24135 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:24135 On 28 May 2004 12:21:24 -0400, Stefan Monnier wrote: > Redefine with defadvice. It's the only half-robust way to do it. Yeah, I already have about a dozen defadvice's in my .emacs. But sometimes you just want to change a small thing inside a function (for example, to take out the downcasing on help-default-arg-highlight). No amount of defadvising is going to help here; at most you can do an around advice and just don't use ad-do-it, and then there's no gain wrt just redefining the function in the first place. /L/e/k/t/u