* nnweb.el (url): Ignore errors when request url.
authorShengHuo ZHU <zsh@cs.rochester.edu>
Thu, 24 Jan 2002 19:33:36 +0000 (19:33 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Thu, 24 Jan 2002 19:33:36 +0000 (19:33 +0000)
* nnrss.el: Clean up the comments.

lisp/ChangeLog
lisp/nnrss.el
lisp/nnweb.el

index 76a3ff5..6d53e67 100644 (file)
@@ -1,3 +1,9 @@
+2002-01-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * 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 1ffff53..e9232ef 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 4b31cee..127a582 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>
@@ -37,7 +37,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)