# HG changeset patch # User Jim Blandy # Date 741395001 0 # Node ID f369e7cb3c221c9e1adf00d82ed467d94b9f316e # Parent e5e5b3634dd0de8577c4714fa96593a32398c8d4 * gnus.el (gnus-newsrc-to-gnus-format): Correct regexp which matches .newsrc lines not to match more than one line. diff -r e5e5b3634dd0 -r f369e7cb3c22 lisp/=gnus.el --- a/lisp/=gnus.el Tue Jun 29 22:58:40 1993 +0000 +++ b/lisp/=gnus.el Tue Jun 29 23:03:21 1993 +0000 @@ -1,6 +1,6 @@ ;;; GNUS: an NNTP-based News Reader for GNU Emacs ;; Copyright (C) 1987, 1988, 1989, 1990, 1993 Free Software Foundation, Inc. -;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/gnus.el,v 1.20 1993/06/10 10:40:16 jimb Exp jimb $ +;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/gnus.el,v 1.21 1993/06/10 11:46:43 jimb Exp jimb $ ;; This file is part of GNU Emacs. @@ -6571,7 +6571,7 @@ ;; but no longer viable because of extensive backtracking in Emacs 19: ;; "^\\([^:! \t\n]+\\)\\([:!]\\)[ \t]*\\(\\(...\\)*.*\\)$" nil t) (while (re-search-forward - "^\\([^:! \t\n]+\\)\\([:!]\\)[ \t]*\\(\\|[^ \t].*\\)$" nil t) + "^\\([^:! \t\n]+\\)\\([:!]\\)[ \t]*\\(\\|[^ \t\n].*\\)$" nil t) (setq newsgroup (buffer-substring (match-beginning 1) (match-end 1))) ;; Check duplications of newsgroups. ;; Note: Checking the duplications takes very long time.