From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ivanov Dmitry Newsgroups: gmane.emacs.help Subject: cperl-mode delete kills region Date: Sat, 22 May 2010 10:03:07 +0400 Message-ID: <719738062.20100522100307@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1274521401 13588 80.91.229.12 (22 May 2010 09:43:21 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 22 May 2010 09:43:21 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat May 22 11:43:20 2010 connect(): No such file or directory Return-path: Envelope-to: geh-help-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 1OFlEk-0007cF-Uz for geh-help-gnu-emacs@m.gmane.org; Sat, 22 May 2010 11:43:19 +0200 Original-Received: from localhost ([127.0.0.1]:49537 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFkW3-00068S-BG for geh-help-gnu-emacs@m.gmane.org; Sat, 22 May 2010 04:57:07 -0400 Original-Received: from [140.186.70.92] (port=50580 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFhnp-0004CY-CJ for help-gnu-emacs@gnu.org; Sat, 22 May 2010 02:03:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFhnn-00080Z-Vf for help-gnu-emacs@gnu.org; Sat, 22 May 2010 02:03:16 -0400 Original-Received: from mail-fx0-f41.google.com ([209.85.161.41]:60621) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFhnn-00080T-Cc for help-gnu-emacs@gnu.org; Sat, 22 May 2010 02:03:15 -0400 Original-Received: by fxm11 with SMTP id 11so606634fxm.0 for ; Fri, 21 May 2010 23:03:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:x-mailer:x-priority :message-id:to:subject:mime-version:content-type :content-transfer-encoding; bh=BKhyHwGhZp77Gr9PUyr6HFLJuljgl65pdpWQ5fFSEcw=; b=d6xGfnQC3vBs09WdrwFdqlt9F4iVsrWo+QxbSNaSnz7DluIT4QuNFRSLlgtm+kF8ck /dlFVu1rZWaCzAlue3h4A62Jp3ObjEDNrx+3wgSCiEFagsdHsF4gPNznrUaQxnUhp6t0 BTEpAJCNdno3nW5VDGlzryGLnfmpEqmAGT9QM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:x-mailer:x-priority:message-id:to:subject:mime-version :content-type:content-transfer-encoding; b=ucLWgM2ZhMd3TSwSrS6V507hCqsIlvGF/vdgELK9fR1WGyH6n6JQXLGQFYIaDYo3Yv d90VM9IMwdHS3U69rl/7n/DSfdYLhUj4UM3PeG7xbWN2uu15e25Sw4EjXr8P5LHrJw2g vGip1SZIZvNCcrBJiPb0A/VmsoznVGVIBDgX0= Original-Received: by 10.223.6.152 with SMTP id 24mr2306319faz.25.1274508194209; Fri, 21 May 2010 23:03:14 -0700 (PDT) Original-Received: from ppp95-165-2-190.pppoe.spdop.ru ([95.165.2.190]) by mx.google.com with ESMTPS id 7sm8045406far.18.2010.05.21.23.03.12 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 May 2010 23:03:13 -0700 (PDT) X-Mailer: The Bat! (v3.98.4) Professional X-Priority: 3 (Normal) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Mailman-Approved-At: Sat, 22 May 2010 04:49:24 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:73727 Archived-At: I am using cperl-mode on Emacs 23.1.1 Windows. Sometimes, when I select a region and press delete Emacs calls kill-region and stores the text, that I am deleting into the kill-ring. For example I have text: my $cookie = new CGI::Cookie(-name=>'CGISESSID',-value=> $self->{session}->id); If I select -name=>'CGISESSID' and then press , it will be put into the kill ring. While selecting all the line doesn't do it. How can I get rid of this, so won't put anything into the kill ring?