From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Raffaele Ricciardi Newsgroups: gmane.emacs.help Subject: Aligning code without breaking strings? Date: Wed, 15 Aug 2012 12:53:50 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1345031713 5143 80.91.229.3 (15 Aug 2012 11:55:13 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 15 Aug 2012 11:55:13 +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 Aug 15 13:55:14 2012 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 1T1cBt-0001BH-Rb for geh-help-gnu-emacs@m.gmane.org; Wed, 15 Aug 2012 13:55:13 +0200 Original-Received: from localhost ([::1]:35462 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1cBs-0007ZO-RK for geh-help-gnu-emacs@m.gmane.org; Wed, 15 Aug 2012 07:55:12 -0400 Original-Path: usenet.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 25 Original-X-Trace: individual.net ECs2bTw3wXFCKxo5MtjsewWJk+JTFz2b4l0PA8DPsv9+1IBeL5FgDI+n1EIATpPABL Cancel-Lock: sha1:XCqaNAJPs+M94bFLIy6nQ78dmL8= User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120713 Thunderbird/14.0 Original-Xref: usenet.stanford.edu gnu.emacs.help:193976 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:86344 Archived-At: acceptable. Hello, how can you align space-separated sequences of characters in source code, without breaking strings? For instance, this code: (autoload #'command "library" "A command." t) (autoload #'another-command "library" "Another Command" t) Should be aligned as: (autoload #'command "library" "A command." t) (autoload #'another-command "library" "Another command." t) Instead of: (autoload #'command "library" "A command." t) (autoload #'another-command "library" "Another command." t) Handling of escaped quotes inside strings would be a plus. Thank you.