From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.lisp.guile.bugs Subject: Re: Fix for guile-www/cgi.scm (cgi:make-cookie) Date: Fri, 29 Aug 2003 06:44:52 -0400 Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Message-ID: References: Reply-To: ttn@glug.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1062158945 1775 80.91.224.253 (29 Aug 2003 12:09:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 29 Aug 2003 12:09:05 +0000 (UTC) Cc: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Fri Aug 29 14:09:03 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19si3r-0005pW-00 for ; Fri, 29 Aug 2003 14:09:03 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 19si38-0004yp-MS for guile-bugs@m.gmane.org; Fri, 29 Aug 2003 08:08:18 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.22) id 19sh8X-0008Tt-8b for bug-guile@gnu.org; Fri, 29 Aug 2003 07:09:49 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.22) id 19sh8I-0008AI-0S for bug-guile@gnu.org; Fri, 29 Aug 2003 07:09:35 -0400 Original-Received: from [207.245.84.69] (helo=colo.agora-net.com) by monty-python.gnu.org with esmtp (Exim 4.22) id 19sh7p-0007jJ-Uz for bug-guile@gnu.org; Fri, 29 Aug 2003 07:09:06 -0400 Original-Received: from ttn by colo.agora-net.com with local (Exim 3.34 #1) id 19sgkO-00045k-00; Fri, 29 Aug 2003 06:44:52 -0400 Original-To: tmh@whitefang.com In-reply-to: (message from Thamer Al-Harbash on Thu, 28 Aug 2003 10:53:34 -0400 (EDT)) X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Bug reports for GUILE, GNU's Ubiquitous Extension Language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.bugs:921 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:921 From: Thamer Al-Harbash Date: Thu, 28 Aug 2003 10:53:34 -0400 (EDT) This cgi::make-cookie breaks under guile-1.6 because it's using a #&key and the (bound?) macro which seem to be no longer available or depreciated. Please accept my patch below which fixes the problem: sounds like guile-1.6 breaks guile-www, not the other way around. the solution to supporting both #&foo and #:foo style taken for guile-1.4.x is to leave (ice-9 optargs) alone and introduce (ice-9 optargs-kw) which handles the #:foo style. perhaps this can be done for guile-1.6 so that it supports interoperability w/ old code. another idea if guile-1.6 has no desire to support #&foo, is to provide (ice-9 optargs-kw) as a simple wrapper/alias for its changed (ice-9 optargs), at which point i would be happy to change guile-www to use (ice-9 optargs-kw) since that would be available in guile-1.4.x and 1.6. thi _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://mail.gnu.org/mailman/listinfo/bug-guile