Path: utzoo!mnetor!uunet!seismo!sundc!pitstop!sun!amdcad!ames!ncar!oddjob!uwvax!umn-d-ub!umn-cs!windsor!hrp From: hrp@hall.cray.com@uc (Hal Peterson) Newsgroups: comp.emacs Subject: Re: problems with gnews-1.3 Message-ID: <5771@windsor.cray.com> Date: 13 Apr 88 16:10:25 GMT References: <133@pyrdc.UUCP> Sender: hrp@windsor.cray.com Reply-To: hrp@hall.cray.com@uc.msc.umn.edu (Hal Peterson) Organization: Cray Research, Inc. Lines: 22 Summary: fix In-reply-to: mike@pyrdc.UUCP (Mike Whitman) There are two problems. The first is in the setup instructions: where they say to do (setq nntp-index-fast nil) you should instead do (setq news-index-fast nil) The second problem is the function gnews-spool-exec-motion, for which a replacement appears below. (defun gnews-spool-exec-motion (pfx) "Fake an NNTP next/last command." (let ((art-no (cadr (memq article-current (if pfx gnews-spool-group-list gnews-spool-group-tsil))))) (if art-no (gnews-spool-exec-art art-no 'stat) (gnews-spool-info "421 No" (if pfx "next" "previous") "article to retrieve") nil))) -- --