From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Adam Funk Newsgroups: gmane.emacs.help Subject: Re: Configuring fill-paragraph not to mash the subversion delimiter? Date: Fri, 6 Apr 2007 20:56:48 +0100 Message-ID: <09lie4-4o8.ln1@news.ducksburg.com> References: NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1175898233 2497 80.91.229.12 (6 Apr 2007 22:23:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 6 Apr 2007 22:23:53 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Apr 07 00:23:30 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 1HZvBU-0000UZ-FR for geh-help-gnu-emacs@m.gmane.org; Fri, 06 Apr 2007 22:37:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HZvF0-0004ac-6I for geh-help-gnu-emacs@m.gmane.org; Fri, 06 Apr 2007 16:41:02 -0400 Original-Path: shelby.stanford.edu!newshub.stanford.edu!newsserver.news.garr.it!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-X-Trace: individual.net Al9ZGbG3ybtpHED/V7caJAR30gSGZPvNt79h/Bp828ms2pUK99 X-Orig-Path: news.ducksburg.com!news User-Agent: slrn/0.9.8.1pl1 (Debian) Original-Xref: shelby.stanford.edu gnu.emacs.help:146865 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:42468 Archived-At: On 2007-04-06, Sam Peterson wrote: > Methinks customizing paragraph-separate may prove fruitful. Something like: > > (setq paragraph-separate (concat "--.*\?--\\|" paragraph-separate)) > > I don't know what *-hook variable is run for subversion commit messages. If > you find the right hook, just place the above code in a lambda or defun for it. Thanks, but Matthew Flaschen already gave me the simple answer [1]; I put these lines in my ~/.emacs and that solved it: (setq paragraph-start (concat paragraph-start "\\|--This line, and those below, will be ignored--")) (setq paragraph-separate (concat paragraph-separate "\\|--This line, and those below, will be ignored--")) [1] Message-ID: