[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: C-m mapping fails occasionally
From: |
Matt Knowles |
Subject: |
RE: C-m mapping fails occasionally |
Date: |
Tue, 28 May 2002 09:31:01 -0500 |
Yeah, the whole point was that my re-mapping would only work for a while,
then would quit working.
(fset 'mat-newline
"address@hidden")
I will also be filing a Bug Report per Mr. Stallman's request.
Thanks,
Matt
-----Original Message-----
From: address@hidden [mailto:address@hidden
Sent: Monday, May 27, 2002 4:16 PM
To: Matt Knowles
Cc: address@hidden
Subject: Re: C-m mapping fails occasionally
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