From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: * X-Spam-Status: No, score=1.2 required=5.0 tests=AWL,SPF_NEUTRAL autolearn=disabled version=3.1.3 X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by yquem.inria.fr (Postfix) with ESMTP id 4199BBC6C for ; Mon, 30 Apr 2007 18:47:52 +0200 (CEST) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by concorde.inria.fr (8.13.6/8.13.6) with ESMTP id l3UGlpbx026968 for ; Mon, 30 Apr 2007 18:47:52 +0200 Received: by ug-out-1314.google.com with SMTP id k3so1067085ugf for ; Mon, 30 Apr 2007 09:47:51 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=SucpIWSZgn8mfFJKhgMxIpH73/RZwgDDJjg9E2cw+Vcsl6IGjdculBac0ctAqkxioSMwHQEhBittU6dZwtFxH/jN/46Vm8gsMnoUWMJkAExCHyEp13BvarC87QWTmL5i1V723UCG86ORR/3Y7AFw88eJsXQIHJlKMUcxcQpUXFo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=EkzJ1sT1RfabGS4tHPfAMMk0hNOmm3pK28hDQTMC/LVK6kx9gNju184KL+phbtDG/g3/9iDEUdsWocHXPFekUF6+kZ6YASPjYCdN8IWUwoagmc05Sud/3zmVUNW/pYCz2peUp+ppxTHNQudMp1hR8Ge6GkQMCeVcs/rbjC2sWDw= Received: by 10.66.219.11 with SMTP id r11mr5540213ugg.1177951671553; Mon, 30 Apr 2007 09:47:51 -0700 (PDT) Received: by 10.66.251.16 with HTTP; Mon, 30 Apr 2007 09:47:51 -0700 (PDT) Message-ID: <9d3ec8300704300947x4edb91bas18b895edb6a0574e@mail.gmail.com> Date: Mon, 30 Apr 2007 18:47:51 +0200 From: "Till Varoquaux" To: "ocaml ml" Subject: Two camlp4 bugs with constraints Cc: nicolas.pouillard@inria.fr MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-j-chkmail-Score: MSGID : 46361DB7.000 on concorde : j-chkmail score : X : 0/20 1 0.000 -> 1 X-Miltered: at concorde with ID 46361DB7.000 by Joe's j-chkmail (http://j-chkmail . ensmp . fr)! X-Spam: no; 0.00; camlp:01 translated:01 bug:01 constraint:01 constraint:01 int:01 int:01 constraints:03 bugs:03 missing:07 printed:12 type:14 type:14 there:18 two:19 _ type 'a p = 'b constraint 'a = < b : 'b> is translated to: type 'a p constraint 'a = < b : 'b > _There is also a bug in the prettyprinter: type 'a p = int constraint 'a = < b : 'b; ..> is printed as: (note the missing semi-colomn) type 'a p = int constraint 'a = < b : 'b .. >