From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/5193 Path: main.gmane.org!not-for-mail From: harinath@cs.umn.edu (Raja R Harinath) Newsgroups: gmane.emacs.gnus.general Subject: Re: GroupLens: gnus-gl.el Date: 21 Feb 1996 12:24:09 -0600 Organization: Dept of Comp Sc, Univ of Minnesota Sender: harinath@cs.umn.edu Message-ID: References: <9602211447.AA17096@pog.ufl.edu> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.42) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035145834 32101 80.91.224.250 (20 Oct 2002 20:30:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:30:34 +0000 (UTC) Cc: larsi@ifi.uio.no (Lars Magne Ingebrigtsen), ding@ifi.uio.no, grouplens@cs.umn.edu Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.3/8.6.9) with SMTP id LAA13675 for ; Wed, 21 Feb 1996 11:28:02 -0800 Original-Received: from mail.cs.umn.edu (mail.cs.umn.edu [128.101.149.1]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id ; Wed, 21 Feb 1996 19:43:33 +0100 Original-Received: from atto.cs.umn.edu (atto.cs.umn.edu [128.101.224.7]) by mail.cs.umn.edu (8.6.12/8.6.12) with ESMTP id MAA22788; Wed, 21 Feb 1996 12:27:06 -0600 Original-Received: (harinath@localhost) by atto.cs.umn.edu (8.6.11/8.6.12) id MAA06034; Wed, 21 Feb 1996 12:24:35 -0600 Original-To: "Dr. Pete Gieser" In-Reply-To: "Dr. Pete Gieser"'s message of Wed, 21 Feb 96 09:47:52 -0500 Original-Lines: 41 Xref: main.gmane.org gmane.emacs.gnus.general:5193 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:5193 "Dr. Pete Gieser" writes: > I've put > > (add-hook 'gnus-summary-mode-hook 'gnus-grouplens-mode) > > in my .gnus, but gnus complains that gnus-grouplens-mode is never defined. > (symbol's definition is void) > What's up? You'll have to do something like: (require 'gnus-gl) (add-hook 'gnus-summary-mode-hook 'gnus-grouplens-mode) Anyway, I don't think that `gnus-grouplens-mode' in version 2.3lars will work as advertised. For one, it attaches bbb-login to `gnus-startup-hook' pretty late. The other problem with attaching `bbb-login' to 'gnus-startup-hook' is that it has no effect on `gnus-no-server'. I do a `gnus-no-server' to read my mail, and then do a `3 l 3 g' to read news. `gnus-startup-hook' is never called (is this a bug?). I would prefer, anyway, something like: (if (null grouplens-bbb-token) (bbb-login)) in some of the gnus-gl functions, which does a bbb-login ONLY for the groups that are `Grouplens enhanced'. > What do you mean "gnus-startup-hook has to be set before starting > Gnus."? This is from the `gnus-gl v2.3' comments. I would recommend, for the time being, getting `gnus-gl v2.4' from: ftp://ftp.cs.umn.edu/users/bmiller/glsoft/gnus-gl.el which version does NOT have the `gnus-grouplens-mode'. - Hari