+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'.
(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)
;;; 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
(eval-when-compile
(ignore-errors
(require 'xml)))
-;; Report failure to find w3 at load time if appropriate.
(eval '(require 'xml))
(nnoo-declare nnrss)
;;; 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>
(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)