From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.help Subject: Re: C-s and delete under Windows Date: Mon, 30 Mar 2009 22:30:00 +0200 Message-ID: References: <8abd1937-f23c-4c21-85f8-147568bcf42c@y9g2000yqg.googlegroups.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: ger.gmane.org 1238445101 26484 80.91.229.12 (30 Mar 2009 20:31:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Mar 2009 20:31:41 +0000 (UTC) Cc: help-gnu-emacs@gnu.org, Ulrich Scholz To: Nikolaj Schumacher Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 30 22:32:59 2009 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.50) id 1LoOA4-0006CW-MQ for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Mar 2009 22:32:57 +0200 Original-Received: from localhost ([127.0.0.1]:38267 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoO8f-0002Az-MO for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Mar 2009 16:31:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LoO7W-0001zB-P2 for help-gnu-emacs@gnu.org; Mon, 30 Mar 2009 16:30:10 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LoO7R-0001yd-5N for help-gnu-emacs@gnu.org; Mon, 30 Mar 2009 16:30:09 -0400 Original-Received: from [199.232.76.173] (port=59865 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoO7Q-0001ya-Qc for help-gnu-emacs@gnu.org; Mon, 30 Mar 2009 16:30:04 -0400 Original-Received: from mail-bw0-f167.google.com ([209.85.218.167]:38942) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LoO7Q-0000z3-2i for help-gnu-emacs@gnu.org; Mon, 30 Mar 2009 16:30:04 -0400 Original-Received: by bwz11 with SMTP id 11so1997666bwz.42 for ; Mon, 30 Mar 2009 13:30:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=6z03YfLbK2bCSa0PaFeEUNbm0c3kq0qT9Da9e8zZ+fg=; b=HoDateJcwAe28celK4FBTGQk2sJS8/g+/SCxneKAbFtZ4OQV4gpx4IElLl28jMIyte MHLHYoJZr9LUKq4Apy/+1d/mATcY/3rcES4Zu4FJrRv4Nc44FRr3UQH7n810t39OYc4R k5jOmMBA34SpW/BZIn3NrgeGSndKL75l4HfdQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=IKSzUIf9ywEjrN4mRluraM9j/tMqzyBZyQSFY7PSKFlLl1J+cYwTIfPc947Rw4+T8A NG1sEkr0eKZU/2AKSk6kynBLcvIpS6rh3xKIVelPydla/yxNRCLTB0RktuY73IxXwOU6 zbZlhnOLXtHPsTRfFvLG60dhP+dKUU362lYLo= Original-Received: by 10.223.122.15 with SMTP id j15mr4398197far.10.1238445000340; Mon, 30 Mar 2009 13:30:00 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:63401 Archived-At: On Mon, Mar 30, 2009 at 10:14 PM, Nikolaj Schumacher wrote: > Ulrich Scholz wrote: > >> Maybe the problem is my .emacs on Windows. I use the following: >> >> (global-set-key [backspace] 'backward-delete-char-untabify) > > Yes, it is. =C2=A0Because globally setting backspace, will override the > meaning in `isearch-mode-map'. =C2=A0Try: > > (define-key isearch-mode-map [backspace] 'isearch-delete-char) Why does setting it globally override the setting in isearch-mode-map?