diff options
author | albert-github <albert.tests@gmail.com> | 2018-09-11 10:31:17 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-09-11 10:31:17 (GMT) |
commit | ab80e5dff5e3f3f1e9ce473ea25894ca08d1f739 (patch) | |
tree | 2d4af16a1f9fe84436e07617beff4a64ec44004c | |
parent | f8c353715a69341f9e4658cd59e750a0adf6bd5d (diff) | |
download | Doxygen-ab80e5dff5e3f3f1e9ce473ea25894ca08d1f739.zip Doxygen-ab80e5dff5e3f3f1e9ce473ea25894ca08d1f739.tar.gz Doxygen-ab80e5dff5e3f3f1e9ce473ea25894ca08d1f739.tar.bz2 |
Namespace with name docstrings_linebreak
As a regression on pull request #674 in respect to the moving of the markdown handling place the `\_linebreak` command is not translated anymore.
In fact the `\_linebreak` is not necessary at all only the space is required as the `\namespace` command takes just one word as argument.
-rw-r--r-- | src/pyscanner.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l index 7b5a424..cd7c256 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -1430,7 +1430,7 @@ STARTDOCSYMS "##" actualDoc.prepend("\\verbatim "); actualDoc.append("\\endverbatim "); } - actualDoc.prepend("\\namespace "+g_moduleScope+"\\_linebr "); + actualDoc.prepend("\\namespace "+g_moduleScope+" "); handleCommentBlock(actualDoc, FALSE); } if ((docBlockContext==ClassBody /*&& !g_hideClassDocs*/) || |