From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/14693 Path: main.gmane.org!not-for-mail From: Jan Vroonhof Newsgroups: gmane.emacs.gnus.general Subject: [patch] Re: Back trace and theory for long standing foreign server bug. Date: 19 Mar 1998 17:04:20 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: multipart/mixed; boundary="Multipart_Thu_Mar_19_17:04:20_1998-1" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035153844 17705 80.91.224.250 (20 Oct 2002 22:44:04 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:44:04 +0000 (UTC) Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.8/8.8.8) with ESMTP id IAA27377 for ; Thu, 19 Mar 1998 08:05:01 -0800 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by xemacs.org (8.8.5/8.8.5) with ESMTP id KAA25232 for ; Thu, 19 Mar 1998 10:05:38 -0600 (CST) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id KAN31863; Thu, 19 Mar 1998 10:40:59 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 19 Mar 1998 10:05:15 -0600 (CST) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id KAA28722 for ; Thu, 19 Mar 1998 10:05:05 -0600 (CST) Original-Received: (qmail 20402 invoked by uid 504); 19 Mar 1998 16:04:44 -0000 Original-Received: (qmail 20399 invoked from network); 19 Mar 1998 16:04:43 -0000 Original-Received: from frege-d-math-north-g-west.math.ethz.ch (HELO frege.math.ethz.ch) (root@129.132.145.3) by claymore.vcinet.com with SMTP; 19 Mar 1998 16:04:40 -0000 Original-Received: from bolzano (vroonhof@bolzano [129.132.146.140]) by frege.math.ethz.ch (8.8.8/Main-STAT-mailer) with ESMTP id RAA11067 for ; Thu, 19 Mar 1998 17:04:23 +0100 (MET) Original-Received: (vroonhof@localhost) by bolzano (SMI-8.6/D-MATH-client) id RAA21963; Thu, 19 Mar 1998 17:04:21 +0100 Original-To: ding@gnus.org In-Reply-To: Jan Vroonhof's message of "19 Mar 1998 16:32:40 +0100" Original-Lines: 48 X-Mailer: Gnus v5.6.1/XEmacs 21.0(beta31) - "Myotonic" Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:14693 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:14693 --Multipart_Thu_Mar_19_17:04:20_1998-1 Content-Type: text/plain; charset=US-ASCII Jan Vroonhof writes: > For some reason (to do with rlogin servers?) gnus-summary-limit > children (and may be other critical functions are run with the wrong > current buffer. Found it 1998-03-19 Jan Vroonhof * nntp.el (nntp-open-rlogin): Wrap in save-excursion --Multipart_Thu_Mar_19_17:04:20_1998-1 Content-Type: application/octet-stream; type=patch Content-Disposition: attachment; filename="nntp-rlogin.patch" Content-Transfer-Encoding: 7bit --- nntp.el~ Sun Mar 8 00:23:14 1998 +++ nntp.el Thu Mar 19 16:58:43 1998 @@ -1191,11 +1191,12 @@ (apply 'start-process "nntpd" buffer nntp-rlogin-program nntp-address nntp-rlogin-parameters)))) - (set-buffer buffer) - (nntp-wait-for-string "^\r*20[01]") - (beginning-of-line) - (delete-region (point-min) (point)) - proc)) + (save-excursion + (set-buffer buffer) + (nntp-wait-for-string "^\r*20[01]") + (beginning-of-line) + (delete-region (point-min) (point)) + proc))) (defun nntp-find-group-and-number () (save-excursion --Multipart_Thu_Mar_19_17:04:20_1998-1 Content-Type: text/plain; charset=US-ASCII --Multipart_Thu_Mar_19_17:04:20_1998-1--