Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* Problems with nrss-url-field
@ 2008-12-05 17:42 Desmond Rivet
  2008-12-07 18:22 ` Desmond Rivet
  0 siblings, 1 reply; 2+ messages in thread
From: Desmond Rivet @ 2008-12-05 17:42 UTC (permalink / raw)
  To: info-gnus-english


Hi all,

I have the following in my .gnus.el, cribbed from some website I've
forgotten:

(require 'browse-url)
(defun browse-nnrss-url( arg )
  (interactive "p")
  (let ((url (assq nnrss-url-field
                  (mail-header-extra
                   (gnus-data-header
                    (assq (gnus-summary-article-number)
                          gnus-newsgroup-data))))))
   (if url
       (progn
         (browse-url (cdr url))
         (gnus-summary-mark-as-read-forward 1))
     (gnus-summary-scroll-up arg))))

(eval-after-load "gnus"
  #'(define-key gnus-summary-mode-map
     (kbd "C-c <RET>") 'browse-nnrss-url))
(add-to-list 'nnmail-extra-headers nnrss-url-field)

The idea is that I want C-c <RET> to launch the RSS url in a browser.

This actually worked fine the first couple of times I started up Gnus.
But now when I start up Gnus, I get this in the minibuffer:

Error in ~/.gnus: nnrss-url-field

Commenting out the elisp code above allows Gnus to start up.

My elisp is...sketchy, but I can generally follow snippets of code
when I put in the effort.  But I don't even know how to debug this...

Any ideas?  Even pointers on how to get more information on what's
going wrong would be helpful...

-- 
Desmond Rivet

Pain is weakness leaving the body.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-12-07 18:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-05 17:42 Problems with nrss-url-field Desmond Rivet
2008-12-07 18:22 ` Desmond Rivet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).