Skip to content

Commit

Permalink
Merge branch 'master' of github.com:doxygen/doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Apr 2, 2024
2 parents 5e48988 + 2717489 commit 035622d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/lists.dox
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Here is an example:
* - keyboard events
* 1. key down event
* 2. key up event
* - checbox list
* - checkbox list
* - [ ] unchecked
* - [x] checked
*
Expand All @@ -47,7 +47,7 @@ Here is an example:
- keyboard events
1. key down event
2. key up event
- checbox list
- checkbox list
- [ ] unchecked
- [x] checked

Expand Down
1 change: 1 addition & 0 deletions src/code.l
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,7 @@ ENDQopt ("const"|"volatile"|"sealed"|"override")({BN}+("const"|"volatile"|"seale
}
<Body>"module"/{B}*[:;]? { // 'module X' or 'module : private' or 'module;'
if (yyextra->lang!=SrcLangExt::Cpp) REJECT;
if (!yyextra->type.isEmpty() || !yyextra->name.isEmpty()) REJECT;
startFontClass(yyscanner,"keyword");
codifyLines(yyscanner,yytext);
endFontClass(yyscanner);
Expand Down
1 change: 1 addition & 0 deletions src/scanner.l
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,7 @@ NONLopt [^\n]*
}
<FindMembers>{B}*"module"{BN}*";" { // global module section
if (!yyextra->insideCpp) REJECT;
if (!yyextra->current->type.isEmpty() || !yyextra->current->name.isEmpty()) REJECT;
//printf("Implementation module unit\n");
lineCount(yyscanner);
BEGIN( FindMembers );
Expand Down

0 comments on commit 035622d

Please sign in to comment.