From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Trevor Spiteri Newsgroups: gmane.emacs.help Subject: indentation of java inner classes Date: 02 Oct 2003 12:10:58 +0200 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <1065089457.2181.6.camel@localhost.localdomain> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1065091438 30736 80.91.224.253 (2 Oct 2003 10:43:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 2 Oct 2003 10:43:58 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 02 12:43:56 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A50w8-00044W-00 for ; Thu, 02 Oct 2003 12:43:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A50iC-0007I1-IC for geh-help-gnu-emacs@m.gmane.org; Thu, 02 Oct 2003 06:29:32 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1A50cc-0006xe-Gy for help-gnu-emacs@gnu.org; Thu, 02 Oct 2003 06:23:46 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1A50bq-0006pV-QR for help-gnu-emacs@gnu.org; Thu, 02 Oct 2003 06:23:29 -0400 Original-Received: from [128.121.124.29] (helo=gidee.iserver.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1A50Qq-0005U5-6c for help-gnu-emacs@gnu.org; Thu, 02 Oct 2003 06:11:36 -0400 Original-Received: from localhost.localdomain ([195.158.106.48]) by gidee.iserver.net (8.12.9p1/8.12.6) with ESMTP id h92ABPvg075667 for ; Thu, 2 Oct 2003 04:11:27 -0600 (MDT) Original-To: help-gnu-emacs@gnu.org X-Mailer: Ximian Evolution 1.4.3 (1.4.3-3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 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 Xref: main.gmane.org gmane.emacs.help:12949 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:12949 Some code is indented as follows: Runnable r = new Runnable () { public void run () { } }; How do I make it indent as follows? Runnable r = new Runnable () { public void run () { } }; Thanks Trevor