From 063583d217b57c15945dbad8ca587cb6ea5c57d0 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 7 Jan 2004 03:17:46 +0000 Subject: [PATCH] Synch to Gnus 200401070314. --- lisp/ChangeLog | 2 ++ lisp/gnus.el | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ef8b55..05d634c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2004-01-07 Katsumi Yamaoka + * gnus.el: Don't make unnecessary *Group* buffer when loading. + * run-at-time.el (run-at-time-saved): Remove. (run-at-time): Doc fix. diff --git a/lisp/gnus.el b/lisp/gnus.el index 51a6f23..d9576bc 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -964,10 +964,10 @@ be set in `.emacs' instead." (eval-when (load) (let ((command (format "%s" this-command))) - (if (and (string-match "gnus" command) - (not (string-match "gnus-other-frame" command))) - (gnus-splash) - (gnus-get-buffer-create gnus-group-buffer)))) + (when (string-match "gnus" command) + (if (string-match "gnus-other-frame" command) + (gnus-get-buffer-create gnus-group-buffer) + (gnus-splash))))) ;;; Do the rest. -- 1.7.10.4