From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/80904 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Customize citation character Date: Wed, 18 Jan 2012 12:57:59 +0900 Organization: Emacsen advocacy group Message-ID: References: <87wr8pohnv.fsf@nzebook.haselwarter.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Trace: dough.gmane.org 1326859158 17460 80.91.229.12 (18 Jan 2012 03:59:18 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 18 Jan 2012 03:59:18 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M29186@lists.math.uh.edu Wed Jan 18 04:59:13 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RnMg5-0007Ck-6g for ding-account@gmane.org; Wed, 18 Jan 2012 04:59:13 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1RnMfG-00028K-OJ; Tue, 17 Jan 2012 21:58:22 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1RnMfE-00028C-CK for ding@lists.math.uh.edu; Tue, 17 Jan 2012 21:58:20 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RnMfD-0006Jx-0Q for ding@lists.math.uh.edu; Tue, 17 Jan 2012 21:58:19 -0600 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1RnMfA-00084l-Me for ding@gnus.org; Wed, 18 Jan 2012 04:58:16 +0100 Original-Received: from localhost ([127.0.0.1]:42308) by orlando.hostforweb.net with smtp (Exim 4.69) (envelope-from ) id 1RnMf8-0008IR-Ez for ding@gnus.org; Tue, 17 Jan 2012 21:58:14 -0600 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.92 (i686-pc-cygwin) Cancel-Lock: sha1:8JTkxa7/gQHmtXxLfgeHBrSmoLE= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: 0.8 (/) X-Spam-Report: SpamAssassin (3.3.1 2010-03-16) analysis follows Bayesian score: 0.4243 Ham tokens: 0.000-1657--8525h-0s--0d--H*u:Emacs, 0.000-1418--7292h-0s--0d--H*u:Gnus, 0.000-40--205h-0s--0d--Customize, 0.000-33--167h-0s--0d--visually, 0.000-19--95h-0s--0d--lambda Spam tokens: 0.998-2--0h-7s--0d--H*c:iso-2022-jp, 0.995-1--0h-3s--0d--HX-AntiAbuse:gnus.org, 0.976-10590--1683h-71975s--0d--H*r:quimby.gnus.org, 0.970-47234--9771h-334322s--0d--H*r:smtp, 0.935-6757--4157h-64008s--0d--H*Ad:D*gnus.org Autolearn status: ham 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.4243] List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:80904 Archived-At: philipp.haselwarter@gmx.de wrote: > Is it possible to /visually/ replace the leading `> ' in citations with > something else, like `│ ' ? Is this ok? (add-hook 'gnus-article-prepare-hook (lambda nil (goto-char (point-min)) (let ((inhibit-read-only t)) (while (re-search-forward "^[\t >]+" nil t) (replace-match (subst-char-in-string ?> ?| (match-string 0)))))))