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#15568: Lookup this-command-keys without a prefix argument Date: Thu, 10 Oct 2013 02:57:18 +0300 Organization: JURTA Message-ID: <87hacq6lsy.fsf@mail.jurta.org> References: <8761t7l57d.fsf@mail.jurta.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1381363155 10814 80.91.229.3 (9 Oct 2013 23:59:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Oct 2013 23:59:15 +0000 (UTC) Cc: 15568-done@debbugs.gnu.org To: Stefan Monnier Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Oct 10 01:59:18 2013 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VU3ew-0006ot-CD for geb-bug-gnu-emacs@m.gmane.org; Thu, 10 Oct 2013 01:59:18 +0200 Original-Received: from localhost ([::1]:44335 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VU3ev-0004X1-Qj for geb-bug-gnu-emacs@m.gmane.org; Wed, 09 Oct 2013 19:59:17 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VU3en-0004Wk-9B for bug-gnu-emacs@gnu.org; Wed, 09 Oct 2013 19:59:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VU3eg-0003uK-Hp for bug-gnu-emacs@gnu.org; Wed, 09 Oct 2013 19:59:09 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:58801) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VU3eg-0003uB-Eh for bug-gnu-emacs@gnu.org; Wed, 09 Oct 2013 19:59:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1VU3eg-0006RV-8C for bug-gnu-emacs@gnu.org; Wed, 09 Oct 2013 19:59:02 -0400 Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-To: bug-gnu-emacs@gnu.org Resent-Date: Wed, 09 Oct 2013 23:59:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 15568 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Mail-Followup-To: 15568@debbugs.gnu.org, juri@jurta.org, juri@jurta.org Original-Received: via spool by 15568-done@debbugs.gnu.org id=D15568.138136311224725 (code D ref 15568); Wed, 09 Oct 2013 23:59:01 +0000 Original-Received: (at 15568-done) by debbugs.gnu.org; 9 Oct 2013 23:58:32 +0000 Original-Received: from localhost ([127.0.0.1]:38859 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VU3eB-0006Qj-2b for submit@debbugs.gnu.org; Wed, 09 Oct 2013 19:58:31 -0400 Original-Received: from ps18281.dreamhost.com ([69.163.218.105]:53626 helo=ps18281.dreamhostps.com) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VU3e8-0006Qa-6E for 15568-done@debbugs.gnu.org; Wed, 09 Oct 2013 19:58:28 -0400 Original-Received: from localhost.jurta.org (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id 52047258B9E935; Wed, 9 Oct 2013 16:58:26 -0700 (PDT) In-Reply-To: (Stefan Monnier's message of "Wed, 09 Oct 2013 14:14:27 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 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: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:79125 Archived-At: >> As discovered in bug#15200, (lookup-key isearch-mode-map (this-command-keys)) >> can't decide whether the key sequence is bound to an isearch command or not. > > Actually, this is easy to fix: use this-single-command-keys. Ah, I expected such a command, but missed it when looked at the list of commands with the prefix "this-command-...". Also I discovered that to support a key sequence like `C-s C-u C-u C-l' requires adding the command `universal-argument-more' (and `universal-argument-minus' for completeness). I installed a fix for these problems.