summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-08-28 10:02:37 (GMT)
committerGitHub <noreply@github.com>2016-08-28 10:02:37 (GMT)
commitef714246bed854604e2a88aac1979a13cc15cc75 (patch)
tree88b7aec61e0de8302a00ed5e1596e3ddaebec199
parent95041db622c22329d18519b62966d2ce00018efc (diff)
parent80f08d11c9a21db86bbeb106194f4e76f67bd50e (diff)
downloadDoxygen-ef714246bed854604e2a88aac1979a13cc15cc75.zip
Doxygen-ef714246bed854604e2a88aac1979a13cc15cc75.tar.gz
Doxygen-ef714246bed854604e2a88aac1979a13cc15cc75.tar.bz2
Merge pull request #507 from albert-github/feature/bug_python_code_param
Determination of end of parameter list
-rw-r--r--src/pycode.l4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pycode.l b/src/pycode.l
index ef6c780..3935107 100644
--- a/src/pycode.l
+++ b/src/pycode.l
@@ -1142,6 +1142,10 @@ TARGET ({IDENTIFIER}|"("{TARGET_LIST}")"|"["{TARGET_LIST}"]"|{ATTRIBUT
codify(yytext);
}
+ "\n" {
+ codifyLines(yytext);
+ }
+
":" {
codify(yytext);