Skip to content

Commit 6c51ebb

Browse files
committed
.lt. -> <
1 parent 72465f4 commit 6c51ebb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/fpm_command_line.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ subroutine get_command_line_settings(cmd_settings)
401401

402402
case('help','manual')
403403
call set_args(common_args, help_help,version_text)
404-
if(size(unnamed).lt.2)then
404+
if(size(unnamed)<2)then
405405
if(unnamed(1)=='help')then
406406
unnamed=[' ', 'fpm']
407407
else

src/fpm_strings.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ subroutine split(input_line,array,delimiters,order,nulls)
418418
end select
419419

420420
do i20=1,icount ! fill the array with the tokens that were found
421-
if(iterm(i20).lt.ibegin(i20))then
421+
if(iterm(i20)<ibegin(i20))then
422422
select case (trim(adjustl(nlls)))
423423
case ('ignore','','ignoreend')
424424
case default

test/fpm_test/test_versioning.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ subroutine test_valid_compare(error)
218218
return
219219
end if
220220

221-
if (.not. v2 .lt. v1) then
221+
if (.not. v2 < v1) then
222222
call test_failed(error, "Version comparison failed (lt)")
223223
return
224224
end if

test/help_test/help_test.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ program help_test
7979
write(*,'(*(g0))')'<INFO>CMD=',path,' EXITSTAT=',estat,' CMDSTAT=',cstat,' MESSAGE=',trim(message)
8080
tally=[tally,all([estat==0,cstat==0])]
8181
call swallow('fpm_scratch_help.txt',page1)
82-
if(size(page1).lt.3)then
82+
if(size(page1)<3)then
8383
write(*,*)'<ERROR>help for '//names(i)//' ridiculiously small'
8484
tally=[tally,.false.]
8585
exit
@@ -138,7 +138,7 @@ program help_test
138138
!lines=max(count(char(10)==book2),count(char(13)==book2))
139139
chars=sum(len_trim(book2)) ! SUM TRIMMED LENGTH
140140
lines=size(book2)
141-
if( (chars.lt.12000) .or. (lines.lt.350) )then
141+
if( (chars<12000) .or. (lines<350) )then
142142
write(*,*)'<ERROR>"debug" manual is suspiciously small, bytes=',chars,' lines=',lines
143143
tally=[tally,.false.]
144144
else

0 commit comments

Comments
 (0)