[Issue 12383] dlang.org operator overloading text with DDoc macro.

2017-07-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12383

Vladimir Panteleev  changed:

   What|Removed |Added

   See Also||https://issues.dlang.org/sh
   ||ow_bug.cgi?id=13211

--


[Issue 12383] dlang.org operator overloading text with DDoc macro.

2016-02-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12383

ag0ae...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ag0ae...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #2 from ag0ae...@gmail.com ---


*** This issue has been marked as a duplicate of issue 13373 ***

--


[Issue 12383] dlang.org operator overloading text with DDoc macro.

2014-04-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12383

Andrej Mitrovic andrej.mitrov...@gmail.com changed:

   What|Removed |Added

   Keywords||pull
URL||https://github.com/D-Progra
   ||mming-Language/dlang.org/pu
   ||ll/548
 CC||andrej.mitrov...@gmail.com
   Assignee|nob...@puremagic.com|andrej.mitrov...@gmail.com

--


[Issue 12383] dlang.org operator overloading text with DDoc macro.

2014-04-21 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12383

alix.pex...@gmail.com changed:

   What|Removed |Added

 CC||alix.pex...@gmail.com

--- Comment #1 from alix.pex...@gmail.com ---
This occurs every time that the METACODE macro appears directly inside quotes,
therefore it might actually be considered a bug in DDoc (I don't see anything
in the documentation for macros that says macros are treated differently when
they appear in quotes). Perhaps in cases like this the macro should be placed
inside another macro that add the quotes, so 

($METACODE op)

becomes

($q (($METACODE op))

where

q = #22;$0#22;

--