From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eric Lilja Newsgroups: gmane.emacs.devel Subject: Re: Why isn't C-m listed here? Date: Mon, 16 Apr 2007 16:43:17 +0200 Message-ID: References: <87d524l7mx.fsf@catnip.gol.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1176734976 8712 80.91.229.12 (16 Apr 2007 14:49:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 16 Apr 2007 14:49:36 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 16 16:49:30 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HdSWG-0002F8-NF for ged-emacs-devel@m.gmane.org; Mon, 16 Apr 2007 16:49:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HdSas-0002rc-QZ for ged-emacs-devel@m.gmane.org; Mon, 16 Apr 2007 10:54:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HdSap-0002rU-2z for emacs-devel@gnu.org; Mon, 16 Apr 2007 10:54:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HdSan-0002qx-Hn for emacs-devel@gnu.org; Mon, 16 Apr 2007 10:54:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HdSan-0002qs-FG for emacs-devel@gnu.org; Mon, 16 Apr 2007 10:54:09 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HdSWA-0003mP-Hf for emacs-devel@gnu.org; Mon, 16 Apr 2007 10:49:22 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1HdSSg-0000Zz-EQ for emacs-devel@gnu.org; Mon, 16 Apr 2007 16:45:46 +0200 Original-Received: from nl-217-34.netlogon.liu.se ([130.236.217.34]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Apr 2007 16:45:46 +0200 Original-Received: from mindcooler by nl-217-34.netlogon.liu.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Apr 2007 16:45:46 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 17 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: nl-217-34.netlogon.liu.se User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) In-Reply-To: <87d524l7mx.fsf@catnip.gol.com> X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:69494 Archived-At: Miles Bader wrote: > Eric Lilja [snip quoted raw email address] writes: >> As the topic says: Why isn't C-m listed here: >> >> and if it was, what would its description be? Alias for ? > > It's not an alias for RET, it _is_ RET. > > RET == C-m Ok, thanks for the quick reply. So, C-m is RET which means newline. C-j is newline-and-indent (C-m + ) so if I wanted a newline-and-indent when I press in cc mode I could do: (global-set-key "\C-m" "\C-j") in my c mode common hook? Proper way to do it? - Eric