From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: pasting a password Date: Sun, 16 Nov 2008 14:21:18 -0500 Message-ID: References: <87skpsw6oe.fsf@cyd.mit.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1226863267 18689 80.91.229.12 (16 Nov 2008 19:21:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Nov 2008 19:21:07 +0000 (UTC) Cc: 1104@emacsbugs.donarmstrong.com, Chong Yidong , emacs-devel@gnu.org, jidanni@jidanni.org To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 16 20:22:09 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L1nCD-0003mS-AS for ged-emacs-devel@m.gmane.org; Sun, 16 Nov 2008 20:22:09 +0100 Original-Received: from localhost ([127.0.0.1]:52556 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L1nB4-0001Ra-T7 for ged-emacs-devel@m.gmane.org; Sun, 16 Nov 2008 14:20:58 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L1nB1-0001RV-Fu for emacs-devel@gnu.org; Sun, 16 Nov 2008 14:20:55 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L1nAz-0001Qx-1I for emacs-devel@gnu.org; Sun, 16 Nov 2008 14:20:54 -0500 Original-Received: from [199.232.76.173] (port=59786 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L1nAy-0001Qs-T2 for emacs-devel@gnu.org; Sun, 16 Nov 2008 14:20:52 -0500 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]:53691 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L1nAz-0003U8-7k for emacs-devel@gnu.org; Sun, 16 Nov 2008 14:20:53 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhIFAC8BIElMCrcy/2dsb2JhbACBbMIbiHCCAHmBFA X-IronPort-AV: E=Sophos;i="4.33,614,1220241600"; d="scan'208";a="29937601" Original-Received: from 76-10-183-50.dsl.teksavvy.com (HELO ceviche.home) ([76.10.183.50]) by ironport2-out.teksavvy.com with ESMTP; 16 Nov 2008 14:20:52 -0500 Original-Received: by ceviche.home (Postfix, from userid 20848) id D8FB6B4050; Sun, 16 Nov 2008 14:21:18 -0500 (EST) In-Reply-To: (Andreas Schwab's message of "Sun, 16 Nov 2008 09:38:08 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:105723 Archived-At: > That does not work for yank-pop since the default binding is not a > single character one. It's bound to a single-event sequence, namely M-y. Now, it's true that in several circumstances, M-y will be turned into ESC y, so it will only work in some cases and not all (typically it'll work in a GUI but not in a tty). I think to do it better, we'll need to use an implementation technique closer to the one used by isearch. Stefan