From ab80e5dff5e3f3f1e9ce473ea25894ca08d1f739 Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 11 Sep 2018 12:31:17 +0200 Subject: 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. --- src/pyscanner.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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*/) || -- cgit v0.12