From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/3993 Path: main.gmane.org!not-for-mail From: steve@miranova.com (Steven L. Baur) Newsgroups: gmane.emacs.gnus.general Subject: Sgnus 0.13 patches for XEmacs Date: 15 Nov 1995 20:13:17 -0800 Organization: Miranova Systems, Inc. Sender: steve@miranova.com Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035144804 28196 80.91.224.250 (20 Oct 2002 20:13:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:13:24 +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 UAA27008 for ; Wed, 15 Nov 1995 20:47:49 -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 ; Thu, 16 Nov 1995 05:13:28 +0100 Original-Received: (from steve@localhost) by miranova.com (8.6.11/8.6.9) id UAA26824; Wed, 15 Nov 1995 20:13:21 -0800 Original-To: ding@ifi.uio.no X-Url: http://www.miranova.com/%7Esteve/ Original-Lines: 47 X-Mailer: September Gnus v0.13 Xref: main.gmane.org gmane.emacs.gnus.general:3993 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:3993 It was a most hateful process getting this to run, but I learned a lot. Be sure to set your gnus-group-line-format-spec to have something other than %( and %) in it. I was using them thus: %(%g%), that now only causes a blank group display. How do I make the mouse track highlighting come back? --- gnus-xmas.el~ Wed Nov 15 12:36:42 1995 +++ gnus-xmas.el Wed Nov 15 19:26:58 1995 @@ -135,7 +135,7 @@ (progn (setq info (nth 2 entry)) (gnus-group-insert-group-line - nil group (gnus-info-group info) (gnus-info-marks info) + nil group (gnus-info-level info) (gnus-info-marks info) (car entry) (gnus-info-method info))) (setq active (gnus-gethash group gnus-active-hashtb)) --- gnus.el~ Wed Nov 15 12:36:43 1995 +++ gnus.el Wed Nov 15 16:09:13 1995 @@ -11868,7 +11868,8 @@ (erase-buffer) ;; There may be some overlays that we have to kill... (insert "i") - (let ((overlays (overlays-at (point-min)))) + (let ((overlays (and (fboundp 'overlays-at) + (overlays-at (point-min))))) (while overlays (delete-overlay (car overlays)) (setq overlays (cdr overlays)))) --- nnheader.el.orig Wed Nov 15 12:36:43 1995 +++ nnheader.el Wed Nov 15 15:23:24 1995 @@ -38,6 +38,8 @@ (require 'mail-utils) +(eval-when-compile (require 'cl)) + (defvar nnheader-max-head-length 4096 "*Max length of the head of articles.") -- steve@miranova.com baur