Synch with Oort Gnus.
authoryamaoka <yamaoka>
Thu, 24 Jan 2002 22:14:43 +0000 (22:14 +0000)
committeryamaoka <yamaoka>
Thu, 24 Jan 2002 22:14:43 +0000 (22:14 +0000)
lisp/ChangeLog
lisp/gnus-agent.el
lisp/nnrss.el
lisp/nnweb.el

index da43d57..9d3c475 100644 (file)
@@ -1,3 +1,12 @@
+2002-01-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gnus-agent.el (gnus-agent-request-article): Make sure it is not
+       empty file.
+
+       * nnweb.el (url): Ignore errors when request url.
+       
+       * nnrss.el: Clean up the comments.
+
 2002-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * lpath.el: Fbind `w3m-region'; bind `w3m-mode-map'.
index 364ac0a..6ee9ef1 100644 (file)
@@ -1891,8 +1891,9 @@ The following commands are available:
                  (gnus-agent-directory)
                  (gnus-agent-group-path group) "/"
                  (number-to-string article)))
-       (buffer-read-only nil))
-    (when (file-exists-p file)
+        (buffer-read-only nil))
+    (when (and (file-exists-p file)
+              (> (nth 7 (file-attributes file)) 0))
       (erase-buffer)
       (gnus-kill-all-overlays)
       (insert-file-contents-as-coding-system gnus-cache-coding-system file)
index 3196d54..126b3d0 100644 (file)
@@ -1,5 +1,5 @@
 ;;; nnrss.el --- interfacing with RSS
-;; Copyright (C) 2001  Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002  Free Software Foundation, Inc.
 
 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
 ;; Keywords: RSS
@@ -39,7 +39,6 @@
 (eval-when-compile
   (ignore-errors
     (require 'xml)))
-;; Report failure to find w3 at load time if appropriate.
 (eval '(require 'xml))
 
 (nnoo-declare nnrss)
index 3ecbd27..44b25ac 100644 (file)
@@ -1,5 +1,5 @@
 ;;; nnweb.el --- retrieving articles via web search engines
-;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
+;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
 ;;        Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
@@ -38,7 +38,9 @@
 (require 'nnmail)
 (require 'mm-util)
 (require 'mm-url)
-(require 'url)
+(eval-and-compile
+  (ignore-errors
+    (require 'url)))
 (autoload 'w3-parse-buffer "w3-parse")
 
 (nnoo-declare nnweb)