From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/41475 Path: main.gmane.org!not-for-mail From: Lars Magne Ingebrigtsen Newsgroups: gmane.emacs.gnus.general Subject: Re: RMail functionality I miss Date: Thu, 03 Jan 2002 06:55:40 +0100 Organization: Programmerer Ingebrigtsen Sender: owner-ding@hpc.uh.edu Message-ID: References: <87heq513lx.fsf@nomad.consult-meyers.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035176864 6318 80.91.224.250 (21 Oct 2002 05:07:44 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 05:07:44 +0000 (UTC) Return-Path: Original-Received: (qmail 16798 invoked from network); 3 Jan 2002 05:56:28 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 3 Jan 2002 05:56:28 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16M0rQ-0002wk-00; Wed, 02 Jan 2002 23:56:16 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 02 Jan 2002 23:56:08 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id XAA28288 for ; Wed, 2 Jan 2002 23:55:55 -0600 (CST) Original-Received: (qmail 16790 invoked by alias); 3 Jan 2002 05:55:59 -0000 Original-Received: (qmail 16785 invoked from network); 3 Jan 2002 05:55:59 -0000 Original-Received: from quimby.gnus.org (HELO quimby2.netfonds.no) (195.204.10.66) by gnus.org with SMTP; 3 Jan 2002 05:55:59 -0000 Original-Received: from news by quimby2.netfonds.no with local (Exim 3.12 #1 (Debian)) id 16M0s7-0007QW-00 for ; Thu, 03 Jan 2002 06:56:59 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 33 Original-NNTP-Posting-Host: quimbies.gnus.org Original-X-Trace: quimby2.netfonds.no 1010037419 26237 195.204.10.148 (3 Jan 2002 05:56:59 GMT) Original-X-Complaints-To: usenet@quimby2.netfonds.no Original-NNTP-Posting-Date: 3 Jan 2002 05:56:59 GMT X-Face: #6Lk>Y\o;Lnm3{sP4n{{IilZttG*gX^|'c48Gd`;?-fnXUs5_0!dO=-$^RgmE]r+WBbST{L ZVx47sNP0f,gDA=S}5`TA~w=5[?eEJU{]#Uzx0qL^?^wTT?HZyJE]RjM.a7ETVT2_c\P^6Z$][-BMx 5TMzmQN58oR6E8M1>l@ X-Face-1: $Z%X!8`KAmj%YJSXK5akm|CF(+"sk/FCa*>R-v6{Qx.d`9-Qrysw=&IpDwSgw,~2]b.OqS: ,|Qr)yU~%mJ.K^@E=>e3._Ab$53Os|!JM2@Y'6x!-8dInympI;4^E3!yk)A7%Q5L]duRVssHb2bQg^ )Qw[=S<[03,,yFwVhUdDu0?/n1+(F`!&~{ltF&"O?i7L;X..['#/,lHDBpFwjQ0U>mmCI>G5|d,`\" FL3~2iMq.TC3fuivSBrld#v[Qrd]70gtmO5.uS@0w!5fk.*-W51}m" X-Now-Playing: N.M.L. (No More Landmine)'s _Zero Landmine_: "Zero Landmine (Piano + Cello Version)" User-Agent: Gnus/5.090005 (Oort Gnus v0.05) Emacs/21.1 (i686-pc-linux-gnu) Cancel-Lock: sha1:MZBigBhk/L8iizzqcp/8be9KXB8= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:41475 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:41475 Karl Kleinpaste writes: > Lars Magne Ingebrigtsen writes: >> I've now implemented this. (This is the first test. :-) ) > > Sweep region in *Article* buffer, hit `F', and get this trace: > > Signaling: (void-variable mark-active) Another Emacs/XEmacs incompatibility I'd forgotten. I find this is the code: (defun gnus-region-active-p () "Say whether the region is active." (and (boundp 'transient-mark-mode) transient-mark-mode (boundp 'mark-active) mark-active)) But that's not really what we want here, is it? I want this to work even though `transient-mark-mode' isn't in use. So I could just make a new one that doesn't include that test. But the XEmacs version of this function is: (defalias 'gnus-region-active-p 'region-active-p) Does that include the transient mark mode stuff, or not? -- (domestic pets only, the antidote for overdose, milk.) larsi@gnus.org * Lars Magne Ingebrigtsen