From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Umar Said Newsgroups: gmane.emacs.help Subject: Re: tidy up code Date: Fri, 21 Dec 2007 12:23:07 +0100 (CET) Organization: Aioe.org NNTP Server Message-ID: References: <8fe575ee-5f12-4e70-9818-34d7b3769336@e25g2000prg.googlegroups.com> <1116db7a-9821-4383-9529-9637460e8b5e@e23g2000prf.googlegroups.com> <87wsr8qoso.fsf@muscle.bealbywm.plus.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1198250218 20311 80.91.229.12 (21 Dec 2007 15:16:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 21 Dec 2007 15:16:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Dec 21 16:17:09 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J5jcY-0000fo-IE for geh-help-gnu-emacs@m.gmane.org; Fri, 21 Dec 2007 16:17:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J5jcE-0000Bz-Lk for geh-help-gnu-emacs@m.gmane.org; Fri, 21 Dec 2007 10:16:46 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news-fra1.dfn.de!feeder.erje.net!aioe.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 31 Original-NNTP-Posting-Host: M4mGb045M78K7yvZpFpbeg.user.aioe.org Original-X-Complaints-To: abuse@aioe.org User-Agent: pan 0.119 (Karma Hunters) Original-Xref: shelby.stanford.edu gnu.emacs.help:154852 X-Mailman-Approved-At: Fri, 21 Dec 2007 10:09:12 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:50279 Archived-At: On Fri, 21 Dec 2007 11:18:15 +0000, Martin Bealby wrote: > As you are new to Emacs I'm assuming you are not used to the C-M- > notation. Note that this does not mean Control + Capital M then \ > > C, M and S are modifier keys and you press the required ones at the same > time. > > C is control. > M is meta (alt on PCs). > S is shift. > > Thus, C-M-\ is control + meta (alt) + backslash at the same time. > > Martin Thank you Martin. Yes I'm new to Emacs and confused with it. I've tried to press control+alt+\ as you told me. Here is the result: int main(void) { int a = 1; if (a == 1) cout << "true" << endl; else cout << "false" << endl; return 0 } I've also tried M-x indent-region and other indent command, but still no success.