diff options
author | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:44:43 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:44:43 +0000 |
commit | 557bc6f37b0348d35af8b199cfc4c000bcb35533 (patch) | |
tree | 8bee7a7ba2d1e08dbbef55ed72f69e25b71a5b03 /lisp/gnus/nnlistserv.el | |
parent | 2df5044f341e44e2f2d3c7e1f164c3c0fcb48879 (diff) | |
download | emacs-557bc6f37b0348d35af8b199cfc4c000bcb35533.tar.gz |
(nnlistserv-kk-wash-article): Fix paren nesting.
Diffstat (limited to 'lisp/gnus/nnlistserv.el')
-rw-r--r-- | lisp/gnus/nnlistserv.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/nnlistserv.el b/lisp/gnus/nnlistserv.el index 12978435f7f..b6ce46c82f2 100644 --- a/lisp/gnus/nnlistserv.el +++ b/lisp/gnus/nnlistserv.el @@ -1,6 +1,6 @@ ;;; nnlistserv.el --- retrieving articles via web mailing list archives -;; Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> ;; Keywords: news, mail @@ -127,7 +127,7 @@ (nnweb-decode-entities) (while headers (goto-char (point-min)) - (re-search-forward (format "<!-- %s=\"\\([^\"]+\\)" (car headers) nil t)) + (re-search-forward (format "<!-- %s=\"\\([^\"]+\\)" (car headers)) nil t) (set (pop headers) (match-string 1))) (goto-char (point-min)) (search-forward "<!-- body" nil t) |