From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: bug#8183: isearch yanking Date: Sun, 6 Mar 2011 01:27:09 +0100 Message-ID: References: <87bp1pf664.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1299371313 16826 80.91.229.12 (6 Mar 2011 00:28:33 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 6 Mar 2011 00:28:33 +0000 (UTC) Cc: 8183@debbugs.gnu.org, gnu.emacs.bug@wongs.net, emacs-devel@gnu.org To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Mar 06 01:28:27 2011 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.69) (envelope-from ) id 1Pw1pi-0001at-Dt for ged-emacs-devel@m.gmane.org; Sun, 06 Mar 2011 01:28:26 +0100 Original-Received: from localhost ([127.0.0.1]:40061 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pw1ph-0006h1-Ri for ged-emacs-devel@m.gmane.org; Sat, 05 Mar 2011 19:28:25 -0500 Original-Received: from [140.186.70.92] (port=34958 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pw1oq-0006D7-LG for emacs-devel@gnu.org; Sat, 05 Mar 2011 19:27:33 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pw1op-00086T-MC for emacs-devel@gnu.org; Sat, 05 Mar 2011 19:27:32 -0500 Original-Received: from mail-ey0-f169.google.com ([209.85.215.169]:52245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pw1op-00086P-BH for emacs-devel@gnu.org; Sat, 05 Mar 2011 19:27:31 -0500 Original-Received: by eyh6 with SMTP id 6so1079937eyh.0 for ; Sat, 05 Mar 2011 16:27:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type:content-transfer-encoding; bh=49Knj3FXltbzi7Vh9o6jM1YYJqfVNwRRF8zsT3kViN4=; b=xHsdQdl4514SeE3h9zm19tPmyaPgtsNfI4QmeEw4c5w4eUHnuHyBCzWYo2NoQKj155 Hzik3V8hXSjbAJ8C3uuVxe4CZqMCsQgkooCXAZT4N6KONBajbr4xOC83s0XTFGYPc77q jM87bcW6ajfEOw7yCAucMnUNR7zEtOPXCxlXI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=ukA2x6SgzevsLDocgaFh0PAyoTSSvaPV27MIoSdVObUCYInEbW/bk7Nvh+1pxrA045 092LvkHEQN+wZ+5uoUh2xVz9IoXxPFsjvvYz6GRFeAE7BjbmB54Jm+9194tvZ9/6Azvo Lxo2bH5MFOwhfkfgO785UeD2Ri1diVgtTRFX8= Original-Received: by 10.213.10.68 with SMTP id o4mr1469712ebo.74.1299371249142; Sat, 05 Mar 2011 16:27:29 -0800 (PST) Original-Received: by 10.213.27.205 with HTTP; Sat, 5 Mar 2011 16:27:09 -0800 (PST) In-Reply-To: <87bp1pf664.fsf@stupidchicken.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.215.169 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:136801 Archived-At: On Sun, Mar 6, 2011 at 1:23 AM, Chong Yidong wrote: > gnu.emacs.bug@wongs.net writes: > >> I just spent a while trying to track down a bug in isearch.el that >> turned out to be a "feature". =C2=A0C-y has been hijacked to do some wei= rd >> thing where it pastes the entire next line of the buffer instead of >> the kill ring. (Wacky!) > >> Fortunately, the fix for this is easy. In isearch.el, just change the >> line that defines C-y as isearch-yank-line to isearch-yank-kill. > > This has been bugging me, and has been discussed before, e.g. > > =C2=A0http://lists.gnu.org/archive/html/emacs-devel/2008-11/msg00485.html > > Back in that 2008 thread, Juri Linkov suggested exactly this change, and > moving isearch-yank-line over to M-s C-e. > > Nothing seemed to come of that suggestion, maybe due to simple inertia. > I now propose to make it so. =C2=A0Any objections? It might have stalled because we where discussing other changes to isearch keymap, but I can see no reason to not make the proposed change here.