mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Make fmtmsg aware of both message sizes, 22 and 37 chars.
This commit is contained in:
parent
6517adbfbc
commit
d8f7354c0e
@ -1,16 +1,16 @@
|
|||||||
subroutine fmtmsg(msg,iz)
|
subroutine fmtmsg(msg,iz)
|
||||||
|
|
||||||
character*22 msg
|
character*(*) msg
|
||||||
|
|
||||||
! Convert all letters to upper case
|
! Convert all letters to upper case
|
||||||
iz=22
|
iz=len(msg)
|
||||||
do i=1,22
|
do i=1,iz
|
||||||
if(msg(i:i).ge.'a' .and. msg(i:i).le.'z') &
|
if(msg(i:i).ge.'a' .and. msg(i:i).le.'z') &
|
||||||
msg(i:i)= char(ichar(msg(i:i))+ichar('A')-ichar('a'))
|
msg(i:i)= char(ichar(msg(i:i))+ichar('A')-ichar('a'))
|
||||||
if(msg(i:i).ne.' ') iz=i
|
if(msg(i:i).ne.' ') iz=i
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
do iter=1,5 !Collapse multiple blanks into one
|
do iter=1,37 !Collapse multiple blanks into one
|
||||||
ib2=index(msg(1:iz),' ')
|
ib2=index(msg(1:iz),' ')
|
||||||
if(ib2.lt.1) go to 100
|
if(ib2.lt.1) go to 100
|
||||||
msg=msg(1:ib2)//msg(ib2+2:)
|
msg=msg(1:ib2)//msg(ib2+2:)
|
||||||
|
Loading…
Reference in New Issue
Block a user