[Issue 4507] use spellchecker when override function doesn't override anything

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4507



--- Comment #2 from github-bugzi...@puremagic.com 2012-03-12 00:40:47 PDT ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/945772cd984d7f6c469ffcbedb0a33711e5d3471
fix issue 4507

https://github.com/D-Programming-Language/dmd/commit/641cc658ef2b11d44b3c3239378be6d8afbd1d09
Merge pull request #801 from dawgfoto/fix4507

fix issue 4507

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 4507] use spellchecker when override function doesn't override anything

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4507


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

   Keywords||pull
 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||FIXED
   Severity|normal  |enhancement


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 5879] Not all frontend errors use stderr

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5879



--- Comment #3 from github-bugzi...@puremagic.com 2012-03-12 01:02:48 PDT ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/e2a2f7eea93cb7bf461348e3405946c6cb5fcf16
Merge pull request #742 from yebblies/issue5879

Issue 5879 - Not all frontend errors use stderr

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 1750] RegExp: lack of support for wchar, dchar; lack of lookingAt() method

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1750


Dmitry Olshansky dmitry.o...@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED


--- Comment #4 from Dmitry Olshansky dmitry.o...@gmail.com 2012-03-12 
01:45:41 PDT ---
Ok. Meant to do it for ages.
The second point rised in this bug report has no proof, and, in fact, is
invalid.
Truth of the matter is that looking through all of Java's regex documentation I
observe:
1. There is no such thing as regex on stream in Java, all objects it works on
are  3 variants of character buffers i.e. wrapped arrays and it's ilk.
2. lookingAt is indeed equivalent to appending '^' to a regex pattern, and as
far as performance concerns go both versions should use the same optimization,
namely no search optimization. And at least current std.regex does optimize
for '^' _somewhere_ at start e.g. sily things like (^...)... still get
optimized.
3. Due to implementation details of Java-style regex there is no way it can to
work directly on stream and keep all it's syntax features, even if tried to do
so, the problem common to all backtracking engines. And yes, in some cases it
has to walk the entire input to make sure it matched what it should match.

Marking as fixed as the first point of the report was solved long ago, the
second isinvalid as is. It also rises a good point on however that was
accounted for already.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6290] GC breaks if a thread is allocated on Mac OSX

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6290


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||FIXED


--- Comment #1 from Walter Bright bugzi...@digitalmars.com 2012-03-12 
02:59:11 PDT ---
The pull request was pulled. I presume that means this is fixed.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7679] std.regex.split and splitter don't work w/ ctRegex

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7679


Dmitry Olshansky dmitry.o...@gmail.com changed:

   What|Removed |Added

 CC||dmitry.o...@gmail.com


--- Comment #1 from Dmitry Olshansky dmitry.o...@gmail.com 2012-03-12 
03:13:19 PDT ---
https://github.com/D-Programming-Language/phobos/pull/490

BTW probably you meant ctRegex!r\.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 1772] regexp.split behavior with captures needs to be documented

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1772



--- Comment #4 from Dmitry Olshansky dmitry.o...@gmail.com 2012-03-12 
03:28:16 PDT ---
https://github.com/D-Programming-Language/phobos/pull/491

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 4250] std.regex does not support character sets other than unicode

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4250


Dmitry Olshansky dmitry.o...@gmail.com changed:

   What|Removed |Added

 CC||dmitry.o...@gmail.com
 AssignedTo|and...@metalanguage.com |dmitry.o...@gmail.com


--- Comment #4 from Dmitry Olshansky dmitry.o...@gmail.com 2012-03-12 
03:34:56 PDT ---
The first straightforward step would be to add option to skip UTF-processing
assuming it is plain ASCII, that covers an important use case. 
The next move largely depends on std.encoding or whatever it would be.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


private struct's destructor causes internal error during compilation

2012-03-12 Thread Sharp

Hi all!

Sorry, my english is poor, so the compiler output and the source 
code will talk instead of me :)


I have DMD v2.057

code
d:\D\dmd2\windows\bin\dmd.exe -c installer\functions.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\functions.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c installer\globals.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\globals.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c installer\installer.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\installer.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c installer\start.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\start.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


installer\start.d(251): Warning: statement is not reachable

d:\D\dmd2\windows\bin\dmd.exe -c utils\db.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\db.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


Internal error: ..\ztc\cgcs.c 162

Exit code 1

d:\D\dmd2\windows\bin\dmd.exe -c utils\htmllogger.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\htmllogger.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c utils\HtmlPage.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\HtmlPage.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c utils\HtmlResponse.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\HtmlResponse.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c utils\params.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\params.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c utils\script.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\script.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


d:\D\dmd2\windows\bin\dmd.exe -c installer\populate.d 
-ofD:\D\projects\ikonboard\ikonboarD\obj\Debug\populate.obj 
-Id:\D\dmd2\src\phobos -Id:\D\dmd2\src\druntime\import  -gc 
-debug -unittest -w -wi


/code

In the db.d, if I remove the PreparedStatement's destructor, it 
compiles.


Here's the source code: 
http://dl.dropbox.com/u/11700363/ikonBoarD.rar


I hope I could help.

Sharp


[Issue 5668] std.regex.Captures is not documented

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5668


Dmitry Olshansky dmitry.o...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 4287] opOpAssign!(~=) for std.array.Appender

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4287



--- Comment #3 from bearophile_h...@eml.cc 2012-03-12 05:37:11 PDT ---
See a discussion thread here, where I have suggested to give Appenhder both
put method and a ~= operator:

http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D.learnarticle_id=33135

http://forum.dlang.org/thread/jimj6f$1vq$1...@digitalmars.com

Adam D. Ruppe:
 Another annoyance is if you have a function that works on
 regular arrays, you probably used ~=.
 But you decide to switch to Appender to try for a speed boost.
 Now you have to change all the usage too, since the
 interfaces are incompatible!

See other messages in the thread.

Adam D. Ruppe, James Miller, S�nke Ludwig and Timon Gehr seem to agree to add
the ~= to Appender.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7630] declaration in switch scope not initialized + CTFE error

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7630


d...@dawgfoto.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE


--- Comment #1 from d...@dawgfoto.de 2012-03-12 07:24:28 PDT ---
*** This issue has been marked as a duplicate of issue 3820 ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3820] Small hole in switch semantics

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3820


d...@dawgfoto.de changed:

   What|Removed |Added

 CC||d...@dawgfoto.de


--- Comment #4 from d...@dawgfoto.de 2012-03-12 07:24:29 PDT ---
*** Issue 7630 has been marked as a duplicate of this issue. ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3820] Small hole in switch semantics

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3820



--- Comment #5 from d...@dawgfoto.de 2012-03-12 07:37:28 PDT ---
You can only execute that block with a goto or a loop.
The initialization should happen anyhow.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7693] New: Getopt Ignores Trailing Characters on Enums

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7693

   Summary: Getopt Ignores Trailing Characters on Enums
   Product: D
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: Phobos
AssignedTo: nob...@puremagic.com
ReportedBy: dsim...@yahoo.com


--- Comment #0 from David Simcha dsim...@yahoo.com 2012-03-12 10:46:32 PDT ---
import std.stdio, std.getopt;

enum Foo {
bar,
baz
}

void main(string[] args) {
Foo foo;
getopt(args, foo, foo);
writeln(foo);
}

$ dmd test.d
$ ./test --foo barThatIDrinkAt
bar

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6106] Keep track of changes during replace function

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6106


josvanu...@gmail.com changed:

   What|Removed |Added

   Priority|P2  |P5


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7694] New: Internal error: e2ir.c 1251 when calling member function inside struct via alias param

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7694

   Summary: Internal error: e2ir.c 1251 when calling member
function inside struct via alias param
   Product: D
   Version: D2
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: P2
 Component: DMD
AssignedTo: nob...@puremagic.com
ReportedBy: dmitry.o...@gmail.com


--- Comment #0 from Dmitry Olshansky dmitry.o...@gmail.com 2012-03-12 
12:42:51 PDT ---
As is the following gives assert on line 8 as expected, 
uncomment bootstrap to get Internal error: e2ir.c 1251

template Instruction(int ir)
{
void match(alias s, alias  m)(){ m.nextState(); }
}


struct T{
void nextState(){  assert(0); }
/*void bootstrap()
{
return Instruction!(0).match!(this, this)();
}*/
}

T t;
void main()
{

//  t.bootstrap();
  Instruction!(0).match!(t, t)();
}

on dmd 2.059head win7 x64
last commit: bcfd90aae05bd6259212ec870b2c037569029d77

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


Re: private struct's destructor causes internal error during compilation

2012-03-12 Thread Kapps

On Monday, 12 March 2012 at 10:58:25 UTC, Sharp wrote:

Hi all!

Sorry, my english is poor, so the compiler output and the 
source code will talk instead of me :)


I have DMD v2.057

In the db.d, if I remove the PreparedStatement's destructor, it 
compiles.


Here's the source code: 
http://dl.dropbox.com/u/11700363/ikonBoarD.rar


I hope I could help.

Sharp


You should post this on the bugtracker, this list just gets 
automatically populated from the bugtracker and isn't meant to be 
posted on.

http://d.puremagic.com/issues/enter_bug.cgi?product=D


[Issue 7509] Allow SIMD variable contents to have all their values changed to a single float variable

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7509



--- Comment #2 from junk.nebs...@gmail.com 2012-03-12 18:33:42 PDT ---
How should something like this be done then on other architectures?

I'm creating a matrix multiplication library and I tried using a value like
this and it didn't work.
I also tried float4 fl = 5; as a test and that didn't set fl to anything. (See
my other bug).
Shouldn't that second one cause a error (either while compiling or at runtime)?

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7695] New: ICE on associative array with keys of struct type with const members

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7695

   Summary: ICE on associative array with keys of struct type with
const members
   Product: D
   Version: D2
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: DMD
AssignedTo: nob...@puremagic.com
ReportedBy: simen.kja...@gmail.com


--- Comment #0 from Simen Kjaeraas simen.kja...@gmail.com 2012-03-12 19:26:50 
PDT ---
struct Bar {
const int t;
}

void main( ) {
int[Bar] a;
int n = a.length;
}

Assertion failure: 'impl' on line 4407 in file 'mtype.c'

abnormal program termination

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3509] Cannot forward reference a template mixin's members in a compile-time context

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3509



--- Comment #1 from github-bugzi...@puremagic.com 2012-03-12 19:28:22 PDT ---
Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/3a45e50f400ad1ec8bb179c95ee39594028a534f
fix Issue 3509 - Cannot forward reference a template mixin's members in a
compile-time context

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3509] Cannot forward reference a template mixin's members in a compile-time context

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3509


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3509] Cannot forward reference a template mixin's members in a compile-time context

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3509



--- Comment #2 from github-bugzi...@puremagic.com 2012-03-12 19:28:40 PDT ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/ebc3fa912b24182aa3204d0b9c49a59bd3d9d85f
fix Issue 3509 - Cannot forward reference a template mixin's members in a
compile-time context

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3510] Cannot forward reference a templated type from within a template mixin

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3510



--- Comment #1 from github-bugzi...@puremagic.com 2012-03-12 20:02:19 PDT ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/2c3e9a8b007d62493c52ca601173ff2cd9cd9c0a
fix Issue 3510 - Cannot forward reference a templated type from within a
template mixin

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3510] Cannot forward reference a templated type from within a template mixin

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3510



--- Comment #2 from github-bugzi...@puremagic.com 2012-03-12 20:02:40 PDT ---
Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/1ac0b1021b77190f512399a2bde9bfac7e05f940
fix Issue 3510 - Cannot forward reference a templated type from within a
template mixin

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3510] Cannot forward reference a templated type from within a template mixin

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3510


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 4504] ICE(toir.c) nested function passed by alias to nested member function

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4504


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||WORKSFORME


--- Comment #12 from Walter Bright bugzi...@digitalmars.com 2012-03-12 
20:40:24 PDT ---
With 2.059, no error occurs for the original case.

The errors in the other cases are legitimate, and are different.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6426] ICE(toir.c) with function-nested alias

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6426


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com


--- Comment #2 from Walter Bright bugzi...@digitalmars.com 2012-03-12 
20:40:40 PDT ---
(In reply to comment #1)
 Same as 4504 ?

No.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 7696] New: The Array container works improperly when using as a property

2012-03-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7696

   Summary: The Array container works improperly when using as a
property
   Product: D
   Version: D2
  Platform: All
OS/Version: Windows
Status: NEW
  Severity: normal
  Priority: P2
 Component: Phobos
AssignedTo: nob...@puremagic.com
ReportedBy: bitwo...@qq.com


--- Comment #0 from Heromyth bitwo...@qq.com 2012-03-12 22:46:16 PDT ---
When an array container using as a property, the inner array (m_Children) must
be set the capacity to a non-zero value. Otherwise, many operations (like
reserve, insertBack, etc.) on the outter array (Children) works improperly.

The sample code is below.
=
public class TestClass
{
@property 
{
public Array!(int) Children() { return m_Children; }
public void Children(Array!(int) value) { m_Children = value;}
}
private Array!(int) m_Children;

void populate()
{
m_Children.reserve(0);// the capacity can't be zero;
//Children.reserve(10); // no effect
writefln(%d, m_Children.capacity);
writefln(%d, Children.capacity);
//m_Children.clear();

for(int i=0; i 5; i++)
{
Children.insertBack(i);// Here is the problem. It is
affected by m_Children's capacity. 
//m_Children.insertBack(i); // ok
}
writefln(Children length %d, Children.length);
}

this()
{
}
}


int main(string[] args)
{
TestClass testInstance = new TestClass();
testInstance.populate();

return 0;
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---