From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: suzannepelz@gmail.com Newsgroups: gmane.emacs.help Subject: Indentation help Date: 1 May 2007 17:44:10 -0700 Organization: http://groups.google.com Message-ID: <1178066650.277994.184820@q75g2000hsh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1178109683 23940 80.91.229.12 (2 May 2007 12:41:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 2 May 2007 12:41:23 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed May 02 14:41:18 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 1HjE90-0005hQ-HK for geh-help-gnu-emacs@m.gmane.org; Wed, 02 May 2007 14:41:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HjEFP-0001ZF-9W for geh-help-gnu-emacs@m.gmane.org; Wed, 02 May 2007 08:47:55 -0400 Original-Path: shelby.stanford.edu!newshub.stanford.edu!postnews.google.com!q75g2000hsh.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 15 Original-NNTP-Posting-Host: 74.220.69.180 Original-X-Trace: posting.google.com 1178066650 26237 127.0.0.1 (2 May 2007 00:44:10 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 2 May 2007 00:44:10 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: q75g2000hsh.googlegroups.com; posting-host=74.220.69.180; posting-account=CmbW_w0AAAC_sH3VKQJAIAWmm7b_JWcn Original-Xref: shelby.stanford.edu gnu.emacs.help:147862 X-Mailman-Approved-At: Wed, 02 May 2007 08:47:39 -0400 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:43480 Archived-At: I need to add a line to my .emacs file for java code so that I can indent concatenated long Strings as follows: FROM THIS: String description = "this is a really long description " + "that I need to put on two lines."; TO THIS (with next line indented two spaces): String description = "this is a really long description " + "that I need to put on two lines."; Thank you!