]> git.pld-linux.org Git - packages/camlp5.git/blob - patch-6.02.2-3
620ec27577269e38df28f7cd5c92a87d812897fa
[packages/camlp5.git] / patch-6.02.2-3
1 Index: CHANGES
2 ===================================================================
3 retrieving revision 6.38
4 diff -c -r6.38 CHANGES
5 *** CHANGES     16 Mar 2011 16:52:42 -0000      6.38
6 --- CHANGES     24 Mar 2011 15:22:59 -0000
7 ***************
8 *** 1,6 ****
9 --- 1,7 ----
10   Camlp5 Version 6.02.3:
11   ----------------------
12   
13 + * [24 Mar 11] Fixed bug: M.(a+b) was refused in normal syntax.
14   * [16 Mar 11] Fixed bug: incorrect compilation of label patterns of the
15     form ~a:b (or ~{a = b} in revised syntax) in class declarations.
16   * [16 Mar 11] Fixed bug: error while printing label patterns ~a:b with
17 Index: etc/pa_o.ml
18 ===================================================================
19 retrieving revision 6.34
20 diff -c -r6.34 pa_o.ml
21 *** etc/pa_o.ml 15 Mar 2011 13:49:08 -0000      6.34
22 --- etc/pa_o.ml 24 Mar 2011 15:19:05 -0000
23 ***************
24 *** 720,726 ****
25             in
26             loop <:expr< $_uid:i$ >> j
27         | i = V UIDENT; "."; "("; j = operator_rparen ->
28 !           <:expr< $_uid:i$ . $lid:j$ >> ] ]
29     ;
30     (* Patterns *)
31     patt:
32 --- 720,728 ----
33             in
34             loop <:expr< $_uid:i$ >> j
35         | i = V UIDENT; "."; "("; j = operator_rparen ->
36 !           <:expr< $_uid:i$ . $lid:j$ >>
37 !       | i = V UIDENT; "."; "("; e = expr; ")" ->
38 !           <:expr< $_uid:i$ . ( $e$ ) >> ] ]
39     ;
40     (* Patterns *)
41     patt:
This page took 0.0462590000000001 seconds and 2 git commands to generate.