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: find-aliases, where-did-you-go-little-command Date: Thu, 07 Nov 2002 17:52:58 +0100 Sender: emacs-devel-admin@gnu.org Message-ID: <20021107174617.B693.LEKTU@terra.es> References: <20021106184041.66CB.LEKTU@terra.es> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1036688893 26930 80.91.224.249 (7 Nov 2002 17:08:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 7 Nov 2002 17:08:13 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 189q3o-0006ZB-00 for ; Thu, 07 Nov 2002 18:03:16 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 189qCs-0005CS-00 for ; Thu, 07 Nov 2002 18:12:38 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 189q4T-0005v1-00; Thu, 07 Nov 2002 12:03:57 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 189ptw-0002i2-00 for emacs-devel@gnu.org; Thu, 07 Nov 2002 11:53:04 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 189pts-0002hV-00 for emacs-devel@gnu.org; Thu, 07 Nov 2002 11:53:03 -0500 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by monty-python.gnu.org with esmtp (Exim 4.10) id 189pts-0002hE-00; Thu, 07 Nov 2002 11:53:00 -0500 Original-Received: from [62.22.27.143] (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id gA7Gqw119283; Thu, 7 Nov 2002 17:52:58 +0100 Original-To: rms@gnu.org In-Reply-To: X-Mailer: Becky! ver. 2.05.06 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9231 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9231 On Thu, 07 Nov 2002 10:08:52 -0500, Richard Stallman wrote: > Few people will try it if it is not on by default. > It is harmless, right? So turn it on by default. I've followed Stefan's suggestion and hardcoded it to be on by default. If later it is decided to make it customizable is just a matter of adding a variable and a two-lines change to `where-is'. Then I've followed Kai's suggestion and commited it ;) > In the current code, this feature inserts the same text that would > otherwise be displayed in another buffer. It looks like that is true > in your version also. So why say "and more so"? In both the code before and after my patch, C-u C-h w does not insert the exact same text that C-h w shows. Consider: C-h w hi-lock-face-buffer => hi-lock-face-buffer is not on any key; and highlight-regexp is on C-x w h, C-u C-h w hi-lock-face-buffer => M-x hi-lock-face-buffer RET; and C-x w h, (highlight-regexp) The first format is more descriptive, so adding "and " seems more natural. /L/e/k/t/u