From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/33334 Path: main.gmane.org!not-for-mail From: Vladimir Volovich Newsgroups: gmane.emacs.gnus.general Subject: Re: someone broke message-newline-and-reformat Date: 13 Nov 2000 15:23:18 +0300 Sender: owner-ding@hpc.uh.edu Message-ID: References: <874s1gm1al.fsf@serafina-pekkala.dme.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1035169462 24612 80.91.224.250 (21 Oct 2002 03:04:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:04:22 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id 978DAD049A for ; Mon, 13 Nov 2000 07:28:02 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id GAB28539; Mon, 13 Nov 2000 06:23:05 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 13 Nov 2000 06:22:31 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id GAA14518 for ; Mon, 13 Nov 2000 06:22:22 -0600 (CST) Original-Received: from vsu.ru (relay1.vsu.ru [62.76.169.14]) by mailhost.sclp.com (Postfix) with ESMTP id D122CD049A for ; Mon, 13 Nov 2000 07:22:45 -0500 (EST) Original-Received: from video.uic.vsu.ru ([62.76.169.38] verified) by vsu.ru (CommuniGate Pro SMTP 3.4b4) with ESMTP id 2041979 for ding@gnus.org; Mon, 13 Nov 2000 15:23:08 +0300 Original-To: ding@gnus.org In-Reply-To: User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.6 Original-Lines: 17 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:33334 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:33334 > i propose the following: > (setq message-cite-prefix-regexp "[ \t]*\\w*>+[ \t]*\\|[ \t]*[]>»|:}+ ]*[]>»|:}+][ \t]*") > or > (setq message-cite-prefix-regexp "[ \t]*\\(\\w\\|[-._]\\)*>+[ \t]*\\|[ \t]*[]>»|:}+ ]*[]>»|:}+][ \t]*") please change `*' after \\w to `+': (setq message-cite-prefix-regexp "[ \t]*\\w+>+[ \t]*\\|[ \t]*[]>»|:}+ ]*[]>»|:}+][ \t]*") or (setq message-cite-prefix-regexp "[ \t]*\\(\\w\\|[-._]\\)+>+[ \t]*\\|[ \t]*[]>»|:}+ ]*[]>»|:}+][ \t]*") (the second form allows characters `-', `.', `_' in citation names as well as `word' characters). Best, v.