* gnus.el (gnus-expand-group-parameters): Match \N or \& only.
authorShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 9 Jan 2002 05:22:50 +0000 (05:22 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 9 Jan 2002 05:22:50 +0000 (05:22 +0000)
lisp/ChangeLog
lisp/gnus.el

index 9afffd3..3e8d683 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gnus.el (gnus-expand-group-parameters): Match \N or \& only.
+
 2002-01-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * mm-encode.el (mm-content-transfer-encoding-defaults): Add
index 95acf36..781186a 100644 (file)
@@ -2871,7 +2871,7 @@ You should probably use `gnus-find-method-for-group' instead."
   (let (new)
     (dolist (elem parameters)
       (if (and (stringp (cdr elem))
-              (string-match "\\\\" (cdr elem)))
+              (string-match "\\\\[0-9&]" (cdr elem)))
          (push (cons (car elem)
                      (gnus-expand-group-parameter match (cdr elem) group))
                new)