From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ryan Yeske Newsgroups: gmane.emacs.devel Subject: rcirc bugfix Date: Thu, 03 May 2007 15:09:58 -0700 Message-ID: <20070505010419.CF9AC142E6@owie.lan> NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1178328498 9482 80.91.229.12 (5 May 2007 01:28:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 5 May 2007 01:28:18 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 05 03:28:17 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Hk94L-0005QB-25 for ged-emacs-devel@m.gmane.org; Sat, 05 May 2007 03:28:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hk9B1-0001VA-Kh for ged-emacs-devel@m.gmane.org; Fri, 04 May 2007 21:35:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hk9Ay-0001Uc-Hq for emacs-devel@gnu.org; Fri, 04 May 2007 21:35:08 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hk9Aw-0001UQ-BY for emacs-devel@gnu.org; Fri, 04 May 2007 21:35:07 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hk9Aw-0001UN-7P for emacs-devel@gnu.org; Fri, 04 May 2007 21:35:06 -0400 Original-Received: from shawmail.shawcable.com ([64.59.128.220] helo=bpd2mo1no.prod.shawcable.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hk94E-00078m-Mg for emacs-devel@gnu.org; Fri, 04 May 2007 21:28:10 -0400 Original-Received: from bpd2mi4no.prod.shawcable.com (bpd2mi4no-qfe3.prod.shawcable.com [10.0.184.123]) by bpd2mo1no.prod.shawcable.com (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JHJ00C76O2YSY40@bpd2mo1no.prod.shawcable.com> for emacs-devel@gnu.org; Fri, 04 May 2007 19:28:10 -0600 (MDT) Original-Received: from mail.emmett.ca ([68.146.204.233]) by bpd2mi4no.prod.shawcable.com (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JHJ00E4NO2Y4XB0@bpd2mi4no.prod.shawcable.com> for emacs-devel@gnu.org; Fri, 04 May 2007 19:28:10 -0600 (MDT) Original-Received: from localhost (localhost [127.0.0.1]) by mail.emmett.ca (Postfix) with ESMTP id 3F0AA417A9 for ; Fri, 04 May 2007 19:28:09 -0600 (MDT) Original-Received: from mail.emmett.ca ([127.0.0.1]) by localhost (sputnik.emmett.ca [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27644-01 for ; Fri, 04 May 2007 19:28:04 -0600 (MDT) Original-Received: from owie.lan (unknown [10.18.1.1]) by mail.emmett.ca (Postfix) with ESMTP id 6313141799 for ; Fri, 04 May 2007 19:28:04 -0600 (MDT) Original-Received: by owie.lan (Postfix, from userid 1000) id CF9AC142E6; Fri, 04 May 2007 18:04:19 -0700 (PDT) X-Virus-Scanned: by amavisd-new (clamav) at mail.emmett.ca X-detected-kernel: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:70559 Archived-At: I have had a couple reports in the past few days that rcirc connections are being dropped when running things like gnus, or synchronous file copies. This patch turns up the timeout from one minute to ten, which is a better default. 2007-05-03 Ryan Yeske * rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted disconnections. *** rcirc.el 18 Mar 2007 19:32:30 -0800 1.32 --- rcirc.el 03 May 2007 15:06:53 -0700 *************** *** 312,318 **** "List of urls seen in the current buffer.") (put 'rcirc-urls 'permanent-local t) ! (defvar rcirc-timeout-seconds 60 "Kill connection after this many seconds if there is no activity.") (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version)) --- 312,318 ---- "List of urls seen in the current buffer.") (put 'rcirc-urls 'permanent-local t) ! (defvar rcirc-timeout-seconds 600 "Kill connection after this many seconds if there is no activity.") (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))