diff options
author | albert-github <albert.tests@gmail.com> | 2016-08-27 10:39:39 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2016-08-27 10:39:39 (GMT) |
commit | 80f08d11c9a21db86bbeb106194f4e76f67bd50e (patch) | |
tree | bce3aac42f31c835ec79afb483a458936d5fc385 | |
parent | cd6a8d34708c40da3e568fdb689b59e7a3d8bdbc (diff) | |
download | Doxygen-80f08d11c9a21db86bbeb106194f4e76f67bd50e.zip Doxygen-80f08d11c9a21db86bbeb106194f4e76f67bd50e.tar.gz Doxygen-80f08d11c9a21db86bbeb106194f4e76f67bd50e.tar.bz2 |
Determination of end of parameter list
The determination of a parameter list should not stop at a newline character.
-rw-r--r-- | src/pycode.l | 4 |
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); |