diff options
| author | Stefan Monnier | 2008-04-03 21:30:51 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-04-03 21:30:51 +0000 |
| commit | 5faa2ec0c6eb24225134de17f80e3bec0fddf6e7 (patch) | |
| tree | 17f9f021912cc2fbe54b352a92a603c6c4440274 | |
| parent | 1ade5d241f73c1a89d28e168f21c5f1f11a6b54e (diff) | |
| download | emacs-5faa2ec0c6eb24225134de17f80e3bec0fddf6e7.tar.gz emacs-5faa2ec0c6eb24225134de17f80e3bec0fddf6e7.zip | |
(gnus-configure-frame, gnus-all-windows-visible-p):
Fix last change in case the element is not even a symbol.
| -rw-r--r-- | lisp/gnus/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/gnus/gnus-win.el | 6 |
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 5ffbcb2d1b7..56562063926 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p): | ||
| 4 | Fix last change in case the element is not even a symbol. | ||
| 5 | |||
| 1 | 2008-03-31 Glenn Morris <rgm@gnu.org> | 6 | 2008-03-31 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * message.el (mml2015-use): Declare for compiler. | 8 | * message.el (mml2015-use): Declare for compiler. |
| @@ -81,8 +86,8 @@ | |||
| 81 | 86 | ||
| 82 | 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de> | 87 | 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de> |
| 83 | 88 | ||
| 84 | * message.el (message-alter-recipients-discard-bogus-full-name): New | 89 | * message.el (message-alter-recipients-discard-bogus-full-name): |
| 85 | function. | 90 | New function. |
| 86 | (message-alter-recipients-function): New variable. | 91 | (message-alter-recipients-function): New variable. |
| 87 | (message-get-reply-headers): Use it. | 92 | (message-get-reply-headers): Use it. |
| 88 | (message-replace-header): New helper function. | 93 | (message-replace-header): New helper function. |
diff --git a/lisp/gnus/gnus-win.el b/lisp/gnus/gnus-win.el index 2dfed1e981f..ba77620fc24 100644 --- a/lisp/gnus/gnus-win.el +++ b/lisp/gnus/gnus-win.el | |||
| @@ -317,7 +317,7 @@ See the Gnus manual for an explanation of the syntax used.") | |||
| 317 | ;; The SPLIT might be something that is to be evaled to | 317 | ;; The SPLIT might be something that is to be evaled to |
| 318 | ;; return a new SPLIT. | 318 | ;; return a new SPLIT. |
| 319 | (while (and (not (assq (car split) gnus-window-to-buffer)) | 319 | (while (and (not (assq (car split) gnus-window-to-buffer)) |
| 320 | (fboundp (car split))) | 320 | (symbolp (car split)) (fboundp (car split))) |
| 321 | (setq split (eval split))) | 321 | (setq split (eval split))) |
| 322 | (let* ((type (car split)) | 322 | (let* ((type (car split)) |
| 323 | (subs (cddr split)) | 323 | (subs (cddr split)) |
| @@ -380,7 +380,7 @@ See the Gnus manual for an explanation of the syntax used.") | |||
| 380 | (while subs | 380 | (while subs |
| 381 | (setq sub (append (pop subs) nil)) | 381 | (setq sub (append (pop subs) nil)) |
| 382 | (while (and (not (assq (car sub) gnus-window-to-buffer)) | 382 | (while (and (not (assq (car sub) gnus-window-to-buffer)) |
| 383 | (fboundp (car sub))) | 383 | (symbolp (car sub)) (fboundp (car sub))) |
| 384 | (setq sub (eval sub))) | 384 | (setq sub (eval sub))) |
| 385 | (when sub | 385 | (when sub |
| 386 | (push sub comp-subs) | 386 | (push sub comp-subs) |
| @@ -520,7 +520,7 @@ should have point." | |||
| 520 | ;; The SPLIT might be something that is to be evaled to | 520 | ;; The SPLIT might be something that is to be evaled to |
| 521 | ;; return a new SPLIT. | 521 | ;; return a new SPLIT. |
| 522 | (while (and (not (assq (car split) gnus-window-to-buffer)) | 522 | (while (and (not (assq (car split) gnus-window-to-buffer)) |
| 523 | (fboundp (car split))) | 523 | (symbolp (car split)) (fboundp (car split))) |
| 524 | (setq split (eval split))) | 524 | (setq split (eval split))) |
| 525 | 525 | ||
| 526 | (setq type (elt split 0)) | 526 | (setq type (elt split 0)) |