Under Gnus v5.6.10; nntp 5.0; nnml 1.0; nnmh 1.0; nndraft 1.0
(the last xemacs-packaged one), I can't open the first group/article. The
reason is:
- I'm using picons
- I'm displaying them in the article buffer
- During picons setup, gnus-get-buffer-name uses `get-buffer' on
"*Article*"
which doesn't exists yet. It thus returns nil.
The following patch fixes it.
1998-06-02 Didier Verna <verna(a)inf.enst.fr>
* gnus-picon.el (gnus-get-buffer-name): use get-buffer-create
instead of get-buffer
--- gnus-picon.el.orig Tue Jun 2 11:18:37 1998
+++ gnus-picon.el Tue Jun 2 11:18:51 1998
@@ -184,8 +184,9 @@
(defun gnus-get-buffer-name (variable)
"Returns the buffer name associated with the contents of a variable."
- (let ((buf (get-buffer (gnus-window-to-buffer-helper
- (cdr (assq variable gnus-window-to-buffer))))))
+ (let ((buf (get-buffer-create (gnus-window-to-buffer-helper
+ (cdr
+ (assq variable gnus-window-to-buffer))))))
(and buf
(buffer-name buf))))