Synchronize with the branch `t-gnus-6_15-quimby'.
authoryamaoka <yamaoka>
Mon, 18 Jun 2001 02:50:53 +0000 (02:50 +0000)
committeryamaoka <yamaoka>
Mon, 18 Jun 2001 02:50:53 +0000 (02:50 +0000)
ChangeLog
lisp/nnshimbun.el

index 74c0cc5..97637a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,8 @@
 2001-06-18  Katsumi Yamaoka <yamaoka@jpl.org>
 
-       * lisp/nnshimbun.el (nnshimbun-find-parameter): Treat the value
-       nil as `off' for the group parameters `prefetch-articles',
-       `encapsulate-images' and the related variables.
+       * lisp/nnshimbun.el (nnshimbun-encapsulate-images): Fix a
+       doc-string that both the values `off' and nil specifies not to
+       encapsulate images.
        (nnshimbun-encapsulate-images): Fix a doc-string that both the
        values `off' and nil specifies not to encapsulate images.
        (nnshimbun-pre-fetch-article): Default to `off'.
index 3668d49..2575167 100644 (file)
@@ -239,12 +239,12 @@ GROUP has a full name."
           `(let ((v (or (plist-get (nnshimbun-find-group-parameters ,name)
                                    'prefetch-articles)
                         nnshimbun-pre-fetch-article)))
-             (if (memq v '(off nil)) nil v)))
+             (if (eq v 'off) nil v)))
          ((eq 'encapsulate-images (eval symbol))
           `(let ((v (or (plist-get (nnshimbun-find-group-parameters ,name)
                                    'encapsulate-images)
                         nnshimbun-encapsulate-images)))
-             (if (memq v '(off nil)) nil v)))
+             (if (eq v 'off) nil v)))
          ((eq 'expiry-wait (eval symbol))
           (if full-name-p
               `(or (plist-get (nnshimbun-find-group-parameters ,group)