#Prints the line if it does not consist only of indentation, adding continuation lines as necessary.
#Prints the line if it does not consist only of indentation, adding continuation lines as necessary.
deffortranLine(file,line)
deffortranLine(file,line)
unless/^\t+$/.match(line)#Intentionally empty lines don't contain indentation, so we preserve totally empty lines while throwing away the ones with leading tabs.
unless/^\t+$/.match(line)#Intentionally empty lines don't contain indentation, so we preserve totally empty lines while throwing away the ones with leading tabs.