Re: Print a PDF

2008-12-06 Thread BCS
Reply to John, Hello! I'm wanting to use D to send a PDF to a printer. Is there an easy way to do this? Also, I may need to set which tray to go to and whether it should duplex or not. Could someone help me out? THANKS! You would do it the same way that it would be done in C. IIRC D has no

Print a PDF

2008-12-06 Thread john
Hello! I'm wanting to use D to send a PDF to a printer. Is there an easy way to do this? Also, I may need to set which tray to go to and whether it should duplex or not. Could someone help me out? THANKS!

Re: mixin not evaluated during doc generation

2008-12-06 Thread Morusaka
Jarrett Billingsley Wrote: > It might or might not make you feel better, but this has already been > reported. Twice. > > http://d.puremagic.com/issues/show_bug.cgi?id=648 > http://d.puremagic.com/issues/show_bug.cgi?id=2420 > > I wonder if the second should be marked as a dup of the first.. O

Re: mixin not evaluated during doc generation

2008-12-06 Thread Jarrett Billingsley
On Sat, Dec 6, 2008 at 10:46 AM, Morusaka <[EMAIL PROTECTED]> wrote: > It seems that doc generation is a separate task and phase from source code > compilation. > For example, mixin are not evaluated during doc generation and you can't > generate comments with them: > > [code] > mixin ("/**\n * c

mixin not evaluated during doc generation

2008-12-06 Thread Morusaka
It seems that doc generation is a separate task and phase from source code compilation. For example, mixin are not evaluated during doc generation and you can't generate comments with them: [code] mixin ("/**\n * comment generated with a mixin\n */"); void foo() {} // no doc will be generated fo