From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: Configuring fill-paragraph not to mash the subversion delimiter? Date: Sun, 18 Mar 2007 23:52:06 -0400 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1174279161 6426 80.91.229.12 (19 Mar 2007 04:39:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 19 Mar 2007 04:39:21 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 19 05:39: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 1HT9eP-00070h-1H for geh-help-gnu-emacs@m.gmane.org; Mon, 19 Mar 2007 05:39:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HT9fq-00006y-1t for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Mar 2007 23:40:46 -0500 Original-Path: shelby.stanford.edu!newshub.stanford.edu!postnews.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.umontreal.ca!news.umontreal.ca.POSTED!not-for-mail Original-NNTP-Posting-Date: Sun, 18 Mar 2007 22:52:06 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.95 (gnu/linux) Cancel-Lock: sha1:Ev035+5BqfDfLRavEjVZm64XaJ0= Original-Lines: 24 Original-NNTP-Posting-Host: 132.204.27.213 Original-X-Trace: sv3-2qafAiJy4gROi/y1KX2LyEigk/4z7NoqpjACqJXO83huOQWzkh+spKzW0tYVok/oqzNx+CO3bF/yS1s!vdgWj/GFGg4iN8sMmTwaRFVUjVpG5bCAio9My9ipPumWymkr+39J1Ne++PKbt4rDx0sLMstuxC8i!StTOaZKCF++9B3SX9Q== Original-X-Complaints-To: abuse@umontreal.ca X-DMCA-Complaints-To: abuse@umontreal.ca X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.34 Original-Xref: shelby.stanford.edu gnu.emacs.help:146437 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:42041 Archived-At: >> Is there any easy way to set something in my ~/.emacs file so that when >> I'm editing subversion commit messages and I use M-q to tidy up a few >> lines of text, the fill-paragraph command will treat the standard line > What package are you using, psvn? > (add-hook 'svn-log-edit-mode-hook > (lambda () > (setq paragraph-start (concat "\\(" paragraph-start "\\|--This > line, and those below, will be ignored--\\)")))) Actually, it's paragraph-separate that should be changed (otherwise some words from subsequent lines could be yanked to the end of the "-- ... --" line). Also the \\(..\\) is unnecessary because the \| operator has the lowest precedence already, tho this doesn't make much difference. (add-hook 'svn-log-edit-mode-hook (lambda () (set (make-local-variable 'paragraph-separate) (concat paragraph-separate "\\|--This line, and those below, will be ignored--")))) -- Stefan