Skip to content

Commit

Permalink
TAG027 2020/05/06 2nd
Browse files Browse the repository at this point in the history
  Compiler
    ・/c オプションが常に有効になっていたのを修正
  • Loading branch information
kumatan committed May 5, 2020
1 parent 4841ca5 commit 17180eb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
�X�V����
TAG027 2020/05/06 2nd
Compiler
�E/c �I�v�V��������ɗL���ɂȂ��Ă����̂��C��

TAG026 2020/05/06
Compiler
�EOption�^�O�̐ݒ��ǂݍ��߂Ă��Ȃ������o�O���C��
Expand Down
4 changes: 2 additions & 2 deletions PMDDotNETCompiler/lc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ private void print_length()
//not_over_all:;
msg += string.Format("{0}", ax);
if (loop_flag != 1) goto pe_loop;
mc.print_mes(loop_mes2);
if(print_flag!=0) mc.print_mes(loop_mes2);
return;
pe_loop:;
dx = (loop_length >> 16) & 0xffff;
Expand All @@ -564,7 +564,7 @@ private void print_length()
msg += string.Format("{0}", n);

pe_00:;
mc.print_mes(msg);
if (print_flag != 0) mc.print_mes(msg);
//mc.print_mes(_crlf_mes);
//pe_01:;
}
Expand Down
2 changes: 1 addition & 1 deletion PMDDotNETConsole/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"PMDDotNETConsole": {
"commandName": "Project",
"commandLineArgs": "-LOGLEVEL=DEBUG /v C:\\Users\\kuma\\Desktop\\pmd\\test.mml"
"commandLineArgs": "-LOGLEVEL=DEBUG /v /c C:\\Users\\kuma\\Desktop\\pmd\\test.mml"
}
}
}

0 comments on commit 17180eb

Please sign in to comment.