From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1261 invoked from network); 11 Oct 2003 01:43:07 -0000 Received: from unknown (HELO monty-python.gnu.org) (199.232.76.173) by sources.redhat.com with SMTP; 11 Oct 2003 01:43:07 -0000 Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A88ma-0004tj-VV for listarch-gnats-devel@sources.redhat.com; Fri, 10 Oct 2003 21:43:00 -0400 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1A88li-0004c4-8W for help-gnats@gnu.org; Fri, 10 Oct 2003 21:42:06 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1A88lA-0004Rv-HK for help-gnats@gnu.org; Fri, 10 Oct 2003 21:42:03 -0400 Received: from [207.17.136.150] (helo=merlot.juniper.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1A88l9-0004RC-S5 for help-gnats@gnu.org; Fri, 10 Oct 2003 21:41:31 -0400 Received: from juniper.net (snowy.juniper.net [172.17.13.16]) by merlot.juniper.net (8.11.3/8.11.3) with ESMTP id h9B1fTj34732 for ; Fri, 10 Oct 2003 18:41:29 -0700 (PDT) (envelope-from hatzis@juniper.net) Message-ID: <3F875FC9.4010404@juniper.net> Date: Sat, 11 Oct 2003 01:43:00 -0000 From: Mel Hatzis User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: help-gnats@gnu.org Content-Type: multipart/mixed; boundary="------------030705050108010301020409" Subject: using GNATS with xemacs X-BeenThere: help-gnats@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: General discussion about GNU GNATS List-Archive: List-Post: List-Help: List-Subscribe: , Sender: help-gnats-bounces+listarch-gnats-devel=sources.redhat.com@gnu.org Errors-To: help-gnats-bounces+listarch-gnats-devel=sources.redhat.com@gnu.org X-SW-Source: 2003-q4/txt/msg00006.txt.bz2 This is a multi-part message in MIME format. --------------030705050108010301020409 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 273 Please review the attached patch which fixes a bug in the gnats.el file, allowing it to be used with xemacs. Currently, if you attempt to use the gnats.el functionality with xemacs nothing works because every attempt to read the server response is failing. -- Mel Hatzis --------------030705050108010301020409 Content-Type: text/plain; name="gnats.el.1.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gnats.el.1.patch" Content-length: 543 --- gnats.el~ 6 Dec 2002 10:32:58 -0000 1.1.1.1 +++ gnats.el 11 Oct 2003 01:09:57 -0000 @@ -1197,7 +1197,7 @@ gnats-server-conn's `parsed-output' prop parsed, the `output-complete' property is set." (put gnats-server-conn 'curr-output (concat (get gnats-server-conn 'curr-output) output)) - (if (eq 10 (string-to-char (substring output -1))) + (if (eq ?\n (string-to-char (substring output -1))) (progn (gnats-debug-string (get gnats-server-conn 'curr-output)) (let ((our-output (get gnats-server-conn 'curr-output))) --------------030705050108010301020409 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 139 _______________________________________________ Help-gnats mailing list Help-gnats@gnu.org http://mail.gnu.org/mailman/listinfo/help-gnats --------------030705050108010301020409--