From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#6222: Shouldn't f1 in isearch-mode be help? Date: Thu, 20 May 2010 03:20:04 +0300 Organization: JURTA Message-ID: <87sk5n77bf.fsf@mail.jurta.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1274315236 3381 80.91.229.12 (20 May 2010 00:27:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 20 May 2010 00:27:16 +0000 (UTC) Cc: 6222@debbugs.gnu.org To: Lennart Borgman Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu May 20 02:27:14 2010 connect(): No such file or directory Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OEtbW-0000zc-Aa for geb-bug-gnu-emacs@m.gmane.org; Thu, 20 May 2010 02:27:14 +0200 Original-Received: from localhost ([127.0.0.1]:57243 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEtbV-0008NR-Bk for geb-bug-gnu-emacs@m.gmane.org; Wed, 19 May 2010 20:27:13 -0400 Original-Received: from [140.186.70.92] (port=41805 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEtbK-0008Kg-Fo for bug-gnu-emacs@gnu.org; Wed, 19 May 2010 20:27:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEtbI-00019x-OE for bug-gnu-emacs@gnu.org; Wed, 19 May 2010 20:27:02 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:40996) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEtbI-00019t-Lu for bug-gnu-emacs@gnu.org; Wed, 19 May 2010 20:27:00 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.69) (envelope-from ) id 1OEtVW-0007df-3Y; Wed, 19 May 2010 20:21:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 20 May 2010 00:21:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 6222 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 6222-submit@debbugs.gnu.org id=B6222.127431483729356 (code B ref 6222); Thu, 20 May 2010 00:21:02 +0000 Original-Received: (at 6222) by debbugs.gnu.org; 20 May 2010 00:20:37 +0000 Original-Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEtV6-0007dR-5V for submit@debbugs.gnu.org; Wed, 19 May 2010 20:20:36 -0400 Original-Received: from smtp-out2.starman.ee ([85.253.0.4] helo=mx2.starman.ee) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEtV3-0007dM-Sh for 6222@debbugs.gnu.org; Wed, 19 May 2010 20:20:34 -0400 X-Virus-Scanned: by Amavisd-New at mx2.starman.ee Original-Received: from mail.starman.ee (82.131.95.74.cable.starman.ee [82.131.95.74]) by mx2.starman.ee (Postfix) with ESMTP id ED05F3F4156; Thu, 20 May 2010 03:20:26 +0300 (EEST) In-Reply-To: (Lennart Borgman's message of "Thu, 20 May 2010 01:30:27 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (x86_64-pc-linux-gnu) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list Resent-Date: Wed, 19 May 2010 20:21:02 -0400 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:37063 Archived-At: > C-h gives isearch help in isearch, but f1 does not. Should not both do > the same for consistency? > > And should not `help-char' (or [help]) be used instead of C-h in the code? > > The doc string for isearch does not mention that you now have this > good help for isearch during isearch. Shouldn't it do that? > > BTW: My bad memory can't find a variable that is holding both C-h and > f1. Wasn't there such a variable? There is no such variable. E.g. in help.el help bindings are repeated three times: (define-key map (char-to-string help-char) 'help-for-help) (define-key map [help] 'help-for-help) (define-key map [f1] 'help-for-help) and (define-key global-map (char-to-string help-char) 'help-command) (define-key global-map [help] 'help-command) (define-key global-map [f1] 'help-command) -- Juri Linkov http://www.jurta.org/emacs/