From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: no-spam@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.devel Subject: Re: C-m mapping fails occasionally Date: 27 May 2002 23:16:20 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <5xptzhfg0r.fsf@kfs2.cua.dk> References: <9A30DB6D3384D311A73400C0F04065E9222BA3@lacks-exch.lacksvalley.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1022530668 13186 127.0.0.1 (27 May 2002 20:17:48 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 27 May 2002 20:17:48 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17CQw7-0003QZ-00 for ; Mon, 27 May 2002 22:17:47 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17CRDc-0000AB-00 for ; Mon, 27 May 2002 22:35:52 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17CQwb-00031Z-00; Mon, 27 May 2002 16:18:17 -0400 Original-Received: from mail.filanet.dk ([195.215.206.179]) by fencepost.gnu.org with smtp (Exim 3.34 #1 (Debian)) id 17CQu2-0002ye-00 for ; Mon, 27 May 2002 16:15:39 -0400 Original-Received: from kfs2.cua.dk.cua.dk (unknown [10.1.82.3]) by mail.filanet.dk (Postfix) with SMTP id C76567C017; Mon, 27 May 2002 20:15:36 +0000 (GMT) Original-To: Matt Knowles In-Reply-To: Original-Lines: 29 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:4444 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:4444 Matt sent me this: > (lookup-key global-map "\C-m") > mat-newline > > Anything else I can do to help? Are y'all able to recreate the problem? > When I open a *scratch* buffer, type something on the first line to make > indent-relative-maybe not automatically indent some (strange behavior it > seems, to indent when the previous line is blank) and hold down the > key, the problem appears before I scroll off the page... > > Matt Matt, This isn't the default global binding for C-m, so it is no wonder it is hard to reproduce. Can you look in your .emacs file for a line like this: (define-key global-map ... 'mat-newline) or (global-set-key ... 'mat-newline) Then uncomment that line (placing a ; at the beginning of the line) and restart your emacs. ++kfs