From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Shashank Khanvilkar Newsgroups: gmane.emacs.help Subject: C++ indentation question Date: Wed, 9 Jan 2013 21:37:45 -0800 (PST) Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1357796416 1798 80.91.229.3 (10 Jan 2013 05:40:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 10 Jan 2013 05:40:16 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 10 06:40:33 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TtAsS-0000vI-Hw for geh-help-gnu-emacs@m.gmane.org; Thu, 10 Jan 2013 06:40:32 +0100 Original-Received: from localhost ([::1]:49827 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtAsA-00011O-NH for geh-help-gnu-emacs@m.gmane.org; Thu, 10 Jan 2013 00:40:14 -0500 X-Received: by 10.66.86.138 with SMTP id p10mr10159302paz.14.1357796265770; Wed, 09 Jan 2013 21:37:45 -0800 (PST) X-Received: by 10.50.163.67 with SMTP id yg3mr1609856igb.12.1357796265690; Wed, 09 Jan 2013 21:37:45 -0800 (PST) Original-Path: usenet.stanford.edu!f6no11275698pbd.1!news-out.google.com!s9ni99090pbb.0!nntp.google.com!f6no11275692pbd.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=76.238.238.230; posting-account=DwWSaQoAAAAi-_OneUZnF-Yb-9Yv2YMG Original-NNTP-Posting-Host: 76.238.238.230 User-Agent: G2/1.0 Injection-Date: Thu, 10 Jan 2013 05:37:45 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:196243 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:88545 Archived-At: I have existing code that looks like: --SNIP-- void foo() { int a; doSomething(); } --SNIP-- I need to change this to: --SNI-- void foo() { int a; doSomething(); } --SNIP-- How can i do this?