From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4090 Path: main.gmane.org!not-for-mail From: steve@miranova.com (Steven L. Baur) Newsgroups: gmane.emacs.gnus.general Subject: Re: Latest XEmacs lossage in sgnus 0.15 Date: 25 Nov 1995 14:30:23 -0800 Organization: Miranova Systems, Inc. Sender: steve@miranova.com Message-ID: References: <199511251913.LAA00297@monolith.spry.com> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035144889 28495 80.91.224.250 (20 Oct 2002 20:14:49 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:14:49 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by miranova.com (8.6.11/8.6.9) with ESMTP id PAA20016 for ; Sat, 25 Nov 1995 15:11:25 -0800 Original-Received: from miranova.com (steve@miranova.com [204.212.162.100]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Sat, 25 Nov 1995 23:30:19 +0100 Original-Received: (from steve@localhost) by miranova.com (8.6.11/8.6.9) id OAA19929; Sat, 25 Nov 1995 14:30:25 -0800 Original-To: ding@ifi.uio.no X-Url: http://www.miranova.com/%7Esteve/ In-Reply-To: William Perry's message of 25 Nov 1995 11:13:04 -0800 Original-Lines: 40 X-Mailer: September Gnus v0.15 Xref: main.gmane.org gmane.emacs.gnus.general:4090 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4090 transient-mark-mode is documented to exist on XEmacs 19.13, but does not. I guess this makes it a documentation bug. The fix is trivial. --- ChangeLog~ Sat Nov 25 13:47:31 1995 +++ ChangeLog Sat Nov 25 14:24:17 1995 @@ -1,5 +1,10 @@ Sat Nov 25 13:41:08 1995 Steven L. Baur + * gnus.el (gnus-group-process-prefix): transient-mark-mode + doesn't exist on XEmacs. + + * gnus.el (gnus-summary-work-articles): ditto. + * gnus.el (gnus-mouse-face-function): One comma too many on gnus-mouse-face-prop --- gnus.el~ Sat Nov 25 13:30:29 1995 +++ gnus.el Sat Nov 25 14:08:05 1995 @@ -4496,7 +4496,7 @@ (setq n (1- n)) (gnus-group-next-group way))) (nreverse groups))) - ((and transient-mark-mode + ((and (fboundp 'transient-mark-mode) transient-mark-mode mark-active) ;; Work on the region between point and mark. (let ((max (max (point) (mark))) @@ -8408,7 +8408,7 @@ (gnus-summary-find-next nil article))) (decf n))) (nreverse articles))) - ((and transient-mark-mode + ((and (fboundp 'transient-mark-mode) transient-mark-mode mark-active) ;; Work on the region between point and mark. (let ((max (max (point) (mark))) -- steve@miranova.com baur