gnus-html.el (gnus-html-schedule-image-fetching): Fix last change.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 5 Oct 2010 03:44:31 +0000 (03:44 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 5 Oct 2010 03:44:31 +0000 (03:44 +0000)
lisp/gnus-html.el

index 7d8c0ef..3ae3766 100644 (file)
@@ -367,13 +367,9 @@ Use ALT-TEXT for the image string."
   (let ((args (list (car image)
                    'gnus-html-image-fetched
                    (list buffer image))))
-    (when (> (if (featurep 'xemacs)
-                (1- (length
-                     (delete "&optional"
-                             (delete "&rest"
-                                     (split-string
-                                      (function-arglist 'url-retrieve))))))
-              (length (help-function-arglist 'url-retrieve)))
+    (when (> (length (if (featurep 'xemacs)
+                        (split-string (function-arglist 'url-retrieve))
+                      (help-function-arglist 'url-retrieve)))
             4)
       (setq args (nconc args (list t))))
     (apply #'url-retrieve args)))