# HG changeset patch # User Stefan Monnier # Date 1207258251 0 # Node ID af178a811324c76e7836e7edc50c2dc192179970 # Parent 71f10341b8651b1b63a3dca77cbf2f29e6fa140b (gnus-configure-frame, gnus-all-windows-visible-p): Fix last change in case the element is not even a symbol. diff -r 71f10341b865 -r af178a811324 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Thu Apr 03 21:18:49 2008 +0000 +++ b/lisp/gnus/ChangeLog Thu Apr 03 21:30:51 2008 +0000 @@ -1,3 +1,8 @@ +2008-04-03 Stefan Monnier + + * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p): + Fix last change in case the element is not even a symbol. + 2008-03-31 Glenn Morris * message.el (mml2015-use): Declare for compiler. @@ -81,8 +86,8 @@ 2008-03-19 Reiner Steib - * message.el (message-alter-recipients-discard-bogus-full-name): New - function. + * message.el (message-alter-recipients-discard-bogus-full-name): + New function. (message-alter-recipients-function): New variable. (message-get-reply-headers): Use it. (message-replace-header): New helper function. diff -r 71f10341b865 -r af178a811324 lisp/gnus/gnus-win.el --- a/lisp/gnus/gnus-win.el Thu Apr 03 21:18:49 2008 +0000 +++ b/lisp/gnus/gnus-win.el Thu Apr 03 21:30:51 2008 +0000 @@ -317,7 +317,7 @@ ;; The SPLIT might be something that is to be evaled to ;; return a new SPLIT. (while (and (not (assq (car split) gnus-window-to-buffer)) - (fboundp (car split))) + (symbolp (car split)) (fboundp (car split))) (setq split (eval split))) (let* ((type (car split)) (subs (cddr split)) @@ -380,7 +380,7 @@ (while subs (setq sub (append (pop subs) nil)) (while (and (not (assq (car sub) gnus-window-to-buffer)) - (fboundp (car sub))) + (symbolp (car sub)) (fboundp (car sub))) (setq sub (eval sub))) (when sub (push sub comp-subs) @@ -520,7 +520,7 @@ ;; The SPLIT might be something that is to be evaled to ;; return a new SPLIT. (while (and (not (assq (car split) gnus-window-to-buffer)) - (fboundp (car split))) + (symbolp (car split)) (fboundp (car split))) (setq split (eval split))) (setq type (elt split 0))