From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Roy Smith Newsgroups: gmane.emacs.help Subject: Screwed up keyboard mappings on RedHat Date: Fri, 18 Apr 2003 10:26:28 -0400 Organization: PANIX Public Access Internet and UNIX, NYC Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1050676261 6549 80.91.224.249 (18 Apr 2003 14:31:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 18 Apr 2003 14:31:01 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Fri Apr 18 16:30:58 2003 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 196WtG-0001hI-00 for ; Fri, 18 Apr 2003 16:30:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 196Wsj-0006Tc-06 for gnu-help-gnu-emacs@m.gmane.org; Fri, 18 Apr 2003 10:30:25 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!panix!roy Original-Newsgroups: gnu.emacs.help Original-Lines: 30 Original-NNTP-Posting-Host: p67-13.acedsl.com Original-X-Trace: reader1.panix.com 1050675989 7820 66.114.67.13 (18 Apr 2003 14:26:29 GMT) Original-X-Complaints-To: abuse@panix.com Original-NNTP-Posting-Date: Fri, 18 Apr 2003 14:26:29 +0000 (UTC) User-Agent: MT-NewsWatcher/3.3b1 (PPC Mac OS X) Original-Xref: shelby.stanford.edu gnu.emacs.help:112094 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:8593 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:8593 I'm using GNU Emacs 21.2.1 on a RedHat 8.0 box. Neither my delete nor C-H key are working right. C-H is acting like the delete key should. When I type "M-X help return c C-H", I get: DEL runs the command backward-delete-char-untabify Obviously something is mapping the C-H I typed into DEL. I know it's not happening in some terminal emulation or transport layer before emacs gets hold of it. If I trace the emacs process, I see it reading the right characters from stdin: [roy@bonkers roy]$ grep '^read(0' typescript read(0, "\10", 1) = 1 read(0, "\10", 1) = 1 read(0, "\33x", 2) = 2 read(0, "h", 1) = 1 read(0, "e", 1) = 1 read(0, "l", 1) = 1 read(0, "p", 1) = 1 read(0, "\r", 1) = 1 read(0, "c", 1) = 1 read(0, "\10", 1) = 1 read(0, "\30", 1) = 1 read(0, "\3", 1) = 1 Two questions: 1) Where is this bogus mapping being done? 2) Why did RedHat screw this up?