From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24613 Path: main.gmane.org!not-for-mail From: Fabian Ritzmann Newsgroups: gmane.emacs.gnus.general Subject: [patch] for 0.95: Remove comma in call to gnus-server-set-info Date: Thu, 05 Aug 1999 16:08:45 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <"prost1.fzi.463:05.08.99.14.08.54"@fzi.de> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: main.gmane.org 1035162147 9627 80.91.224.250 (21 Oct 2002 01:02:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:02:27 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id KAA07659 for ; Thu, 5 Aug 1999 10:13:58 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.3/8.9.3) with ESMTP id JAB04860; Thu, 5 Aug 1999 09:10:19 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 05 Aug 1999 09:10:35 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id JAA00362 for ; Thu, 5 Aug 1999 09:10:26 -0500 (CDT) Original-Received: from relay.xlink.net (relay.xlink.net [193.141.40.5]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id KAA07584 for ; Thu, 5 Aug 1999 10:09:16 -0400 (EDT) Original-Received: from gate.fzi.de (gate.fzi.de [141.21.4.3]) by relay.xlink.net (8.8.8/8.8.7) with SMTP id QAA59970 for ; Thu, 5 Aug 1999 16:09:13 +0200 Original-Received: from prost1.fzi.de by gate.fzi.de with SMTP (PP); Thu, 5 Aug 1999 16:08:58 +0200 Original-Received: from linde by prost1.fzi.de with SMTP (PP); Thu, 5 Aug 1999 16:08:50 +0200 Original-To: ding@gnus.org Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24613 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24613 Hi, A small typo apparently, but it caused major screwage in my .newsrc.eld after I had edited the server parameters in the server buffer. --- pgnus-0.95~/lisp/ChangeLog Thu Aug 5 16:49:51 1999 +++ pgnus-0.95/lisp/ChangeLog Thu Aug 5 16:50:35 1999 @@ -1,3 +1,8 @@ +1999-08-05 Fabian Ritzmann + + * gnus-srvr.el (gnus-server-edit-server): Remove comma in call to + gnus-server-set-info. + Fri Jul 9 22:21:16 1999 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.95 is released. --- pgnus-0.95~/lisp/gnus-srvr.el Thu Aug 5 16:49:20 1999 +++ pgnus-0.95/lisp/gnus-srvr.el Thu Aug 5 16:51:12 1999 @@ -462,7 +462,7 @@ (gnus-edit-form info "Editing the server." `(lambda (form) - (gnus-server-set-info ,server form) + (gnus-server-set-info server form) (gnus-server-list-servers) (gnus-server-position-point))))) BR, Fabian Ritzmann