[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: C-m mapping fails occasionally
From: |
Kim F. Storm |
Subject: |
Re: C-m mapping fails occasionally |
Date: |
27 May 2002 23:16:20 +0200 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 |
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 <Return>
> 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