From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/62503 Path: news.gmane.org!not-for-mail From: Andreas Seltenreich Newsgroups: gmane.emacs.gnus.general Subject: small nnweb fix Date: Tue, 04 Apr 2006 19:45:59 +0200 Message-ID: <871wwdb5ew.fsf@gate450.dyndns.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1144172805 23574 80.91.229.2 (4 Apr 2006 17:46:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 4 Apr 2006 17:46:45 +0000 (UTC) Original-X-From: ding-owner+m11030@lists.math.uh.edu Tue Apr 04 19:46:40 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FQpbx-00049g-V6 for ding-account@gmane.org; Tue, 04 Apr 2006 19:46:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1FQpbq-0002ro-00; Tue, 04 Apr 2006 12:46:30 -0500 Original-Received: from nas01.math.uh.edu ([129.7.128.39]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1FQpbZ-0002rj-00 for ding@lists.math.uh.edu; Tue, 04 Apr 2006 12:46:13 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas01.math.uh.edu with esmtp (Exim 4.52) id 1FQpbV-0007w9-BA for ding@lists.math.uh.edu; Tue, 04 Apr 2006 12:46:13 -0500 Original-Received: from smtp2.rz.uni-karlsruhe.de ([129.13.185.218]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1FQpbO-00050q-00 for ; Tue, 04 Apr 2006 19:46:02 +0200 Original-Received: from rzstud1.stud.uni-karlsruhe.de (rzstud1.stud.uni-karlsruhe.de [193.196.41.33]) by smtp2.rz.uni-karlsruhe.de with esmtp (Exim 4.50 #1) id 1FQpbN-0003PY-O6; Tue, 04 Apr 2006 19:46:01 +0200 Original-Received: from uwi7 by rzstud1.stud.uni-karlsruhe.de with local (Exim 3.36 #1) id 1FQpbP-0001Ct-00 for ding@gnus.org; Tue, 04 Apr 2006 19:46:03 +0200 Original-To: ding@gnus.org X-PGP-Key: 0x2C006B340F8C8C1B X-Now-Playing: Untoten / Vampire Book X-Face: $:F<87a[gD1?#R6S3j21cr1&C&7bd63GHC.tSdskUb}hhwG(ci*=D5kJ<_N+p9q(7-,PnG. Et.Yh --=-=-= Here's a small fix for nnweb. I hope it isn't too late for the release... regards, andreas 2006-04-04 Andreas Seltenreich * nnweb.el (nnweb-google-create-mapping): Update regexp. Some whitespace was matched into the url, which broke browsing hits > 100 when mm-url-use-external wasn't used. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=nnweb.patch Index: nnweb.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/nnweb.el,v retrieving revision 7.18 diff -c -r7.18 nnweb.el *** nnweb.el 24 Feb 2006 22:53:40 -0000 7.18 --- nnweb.el 4 Apr 2006 17:35:53 -0000 *************** *** 415,421 **** (goto-char (point-min)) (incf i 100) (if (or (not (re-search-forward ! "\"]+\\)\">= i nnweb-max-hits)) (setq more nil) --- 415,421 ---- (goto-char (point-min)) (incf i 100) (if (or (not (re-search-forward ! "\" \n\t]+\\)[^<]*]+next" nil t)) (>= i nnweb-max-hits)) (setq more nil) --=-=-=--