Mercurial > hg > xemacs-beta
diff lisp/gnus/gnus-int.el @ 32:e04119814345 r19-15b99
Import from CVS: tag r19-15b99
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:52:56 +0200 |
parents | ec9a17fef872 |
children | 8b8b7f3559a2 |
line wrap: on
line diff
--- a/lisp/gnus/gnus-int.el Mon Aug 13 08:52:30 2007 +0200 +++ b/lisp/gnus/gnus-int.el Mon Aug 13 08:52:56 2007 +0200 @@ -201,7 +201,7 @@ "Check whether a connection to METHOD has been opened." (when (stringp method) (setq method (gnus-server-to-method method))) - (funcall (gnus-get-function method 'server-opened) (nth 1 method))) + (funcall (inline (gnus-get-function method 'server-opened)) (nth 1 method))) (defun gnus-status-message (method) "Return the status message from METHOD. @@ -219,10 +219,10 @@ (defun gnus-request-group (group &optional dont-check method) "Request GROUP. If DONT-CHECK, no information is required." - (let ((method (or method (gnus-find-method-for-group group)))) + (let ((method (or method (inline (gnus-find-method-for-group group))))) (when (stringp method) - (setq method (gnus-server-to-method method))) - (funcall (gnus-get-function method 'request-group) + (setq method (inline (gnus-server-to-method method)))) + (funcall (inline (gnus-get-function method 'request-group)) (gnus-group-real-name group) (nth 1 method) dont-check))) (defun gnus-list-active-group (group) @@ -243,7 +243,7 @@ (defun gnus-close-group (group) "Request the GROUP be closed." - (let ((method (gnus-find-method-for-group group))) + (let ((method (inline (gnus-find-method-for-group group)))) (funcall (gnus-get-function method 'close-group) (gnus-group-real-name group) (nth 1 method))))