From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: maggesi@math4.unice.fr (Marco.MAGGESI) Newsgroups: gmane.emacs.help Subject: Re: Meta-Backspace in AucTeX Date: 12 Oct 2002 12:22:17 -0200 Organization: University of Nice-Sophia Antipolis Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <87hefslst9.fsf@earthlink.net> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1034418118 8873 127.0.0.1 (12 Oct 2002 10:21:58 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 12 Oct 2002 10:21:58 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 180JPB-0002Is-00 for ; Sat, 12 Oct 2002 12:21:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 180JOT-0002CM-00; Sat, 12 Oct 2002 06:21:13 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!news-out.cwix.com!newsfeed.cwix.com!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!freenix!fr.clara.net!heighliner.fr.clara.net!lirmm.fr!cines.fr!unice.fr!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 39 Original-NNTP-Posting-Host: math4.unice.fr Original-X-Trace: malibu.unice.fr 1034418143 244325 134.59.10.174 (12 Oct 2002 10:22:23 GMT) Original-X-Complaints-To: usenet@malibu.unice.fr Original-NNTP-Posting-Date: 12 Oct 2002 10:22:23 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-Xref: shelby.stanford.edu gnu.emacs.help:105969 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2516 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2516 Dan Griswold writes: > Hello all, > > I have recently switched from XEmacs to FSF Emacs. Prior to this, in > all Emacs modes, indeed in all X-Term windows and other apps, I would > type Meta (or Alt) Backspace to kill the previous word. Since I > switched emacsen, M-BS is now mapped to undo. Placing commands such as > global-set-key or local-set-key in .emacs or .latex (called by the > former) gets overruled by something, but I'm not sure what. > > Arrgh! > > Any ideas? This may happen if you use pc-selection-mode. Solution 1: If you have (pc-selection-mode) in your ~/.emacs, then replace it with (require 'pc-select) (setq pc-select-selection-keys-only t) (pc-selection-mode) Solution 2: use M-x customize-variable RET pc-select-selection-keys-only and set the variable "On". Solution 3: add to the bottom of ~/.emacs (global-set-key "\M-\d" 'backward-kill-word) --marco