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: locate-with-filter Date: Wed, 29 Mar 2006 18:02:28 -0500 Message-ID: References: <200603160048.k2G0msu23696@raven.dms.auburn.edu> <200603170221.k2H2L1H14401@raven.dms.auburn.edu> <17435.52238.927514.585806@kahikatea.snap.net.nz> <200603181716.k2IHGpN17847@raven.dms.auburn.edu> <17436.56026.490667.58771@kahikatea.snap.net.nz> <200603190455.k2J4tEK25830@raven.dms.auburn.edu> <200603200512.k2K5CFN12390@raven.dms.auburn.edu> <200603290409.k2T49W729435@raven.dms.auburn.edu> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1143673485 19033 80.91.229.2 (29 Mar 2006 23:04:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 29 Mar 2006 23:04:45 +0000 (UTC) Cc: nickrob@snap.net.nz, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 30 01:04:42 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FOji9-0008Jx-6u for ged-emacs-devel@m.gmane.org; Thu, 30 Mar 2006 01:04:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FOji8-0006NJ-PN for ged-emacs-devel@m.gmane.org; Wed, 29 Mar 2006 18:04:20 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FOjgN-0005Fc-FK for emacs-devel@gnu.org; Wed, 29 Mar 2006 18:02:31 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FOjgM-0005Eh-Df for emacs-devel@gnu.org; Wed, 29 Mar 2006 18:02:30 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FOjgM-0005Ea-8p for emacs-devel@gnu.org; Wed, 29 Mar 2006 18:02:30 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FOjiO-0003oc-Sj for emacs-devel@gnu.org; Wed, 29 Mar 2006 18:04:36 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FOjgK-0007hs-SC; Wed, 29 Mar 2006 18:02:28 -0500 Original-To: Luc Teirlinck In-reply-to: <200603290409.k2T49W729435@raven.dms.auburn.edu> (message from Luc Teirlinck on Tue, 28 Mar 2006 22:09:32 -0600 (CST)) 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:52213 Archived-At: After the changes you made to help-follow, binding `help-follow' to anything else but RET does not work anymore. Why is that? (if (display-mouse-p) "\\[help-follow-mouse] or ") ! "RET on a face name to customize it\n" "or on its sample text for a description of the face.\n\n"))) I don't want to document a bug. ;; The doc string is meant to explain what buttons do. ! (defun help-follow (&optional pos) ! "Follow cross-reference at POS, defaulting to point. For the cross-reference format, see `help-make-xrefs'." ! (interactive "d") ! (unless pos ! (setq pos (point))) ! (unless (push-button pos) ! (error "No cross-reference here"))) This looks like it is putting back the old code that I replaced. If so, that would bring back the bug I fixed. I do not want to do that. It would be the wrong fix. If this is different from the old code, would you please tell me the difference?