Skip to content

Commit

Permalink
utilities.lint_mfiles: fixe newlines between message headers?
Browse files Browse the repository at this point in the history
  • Loading branch information
SeSodesa committed May 15, 2023
1 parent cb61b85 commit 35d40d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion +utilities/lint_mfiles.m
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ function lint_mfiles(folder, kwargs)

n_of_issues = n_of_issues + 1 ;

disp ( " " ) ; % This is needed for exactly one newline between the previous display and the next.

disp ( "Found unacceptable linter message in " + fpath + ":" ) ;

disp ( " " ) ; % This is needed for exactly one newline between the previous display and the next.
Expand Down Expand Up @@ -158,7 +160,9 @@ function lint_mfiles(folder, kwargs)

n_of_issues = n_of_issues + 1 ;

disp ( newline + "Found unacceptable linter message in " + fpath + ":" ) ;
disp( " " ) ;

disp ("Found unacceptable linter message in " + fpath + ":" ) ;

disp ( " " ) ; % This is needed for exactly one newline between the previous display and the next.

Expand Down

0 comments on commit 35d40d2

Please sign in to comment.