From 03e37fbf6a48d95f72bd5a9c37cffefe5c9aa747 Mon Sep 17 00:00:00 2001 From: Wim Van Hoydonck Date: Mon, 18 Aug 2008 20:19:27 +0200 Subject: [PATCH] removed tab characters in source files The Fortran 95 standard does not allow tab characters in source code. These have been removed. --- dom/m_dom_attribute.m4 | 2 +- dom/m_dom_dom.F90 | 4 ++-- dom/m_dom_node.m4 | 2 +- fsys/fox_m_fsys_string_list.F90 | 2 +- wxml/m_wxml_core.F90 | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dom/m_dom_attribute.m4 b/dom/m_dom_attribute.m4 index ca9373c3..d455684d 100644 --- a/dom/m_dom_attribute.m4 +++ b/dom/m_dom_attribute.m4 @@ -5,7 +5,7 @@ TOHW_m_dom_publics(` public :: setSpecified interface getValue module procedure getValue_DOM - end interface + end interface public :: getValue public :: setValue public :: getOwnerElement diff --git a/dom/m_dom_dom.F90 b/dom/m_dom_dom.F90 index c9daf23b..246e6cc1 100644 --- a/dom/m_dom_dom.F90 +++ b/dom/m_dom_dom.F90 @@ -279,7 +279,7 @@ module m_dom_dom public :: getNodeName - public :: getNodeValue + public :: getNodeValue public :: setNodeValue public :: getNodeType public :: getParentNode @@ -460,7 +460,7 @@ module m_dom_dom public :: setSpecified interface getValue module procedure getValue_DOM - end interface + end interface public :: getValue public :: setValue public :: getOwnerElement diff --git a/dom/m_dom_node.m4 b/dom/m_dom_node.m4 index 2aa89f6b..106efcfe 100644 --- a/dom/m_dom_node.m4 +++ b/dom/m_dom_node.m4 @@ -1,7 +1,7 @@ TOHW_m_dom_publics(` public :: getNodeName - public :: getNodeValue + public :: getNodeValue public :: setNodeValue public :: getNodeType public :: getParentNode diff --git a/fsys/fox_m_fsys_string_list.F90 b/fsys/fox_m_fsys_string_list.F90 index 7ae77ca3..7a94b8f8 100644 --- a/fsys/fox_m_fsys_string_list.F90 +++ b/fsys/fox_m_fsys_string_list.F90 @@ -138,7 +138,7 @@ subroutine tokenize_and_add_strings(s_list, s, uniquify) character(len=*), parameter :: & WHITESPACE = achar(9)//achar(10)//achar(13)//achar(32) integer :: i, j - logical :: uniquify_ + logical :: uniquify_ if (present(uniquify)) then uniquify_ = uniquify diff --git a/wxml/m_wxml_core.F90 b/wxml/m_wxml_core.F90 index e2472f2d..c9988a48 100644 --- a/wxml/m_wxml_core.F90 +++ b/wxml/m_wxml_core.F90 @@ -231,7 +231,7 @@ subroutine xml_OpenFile(filename, xf, unit, iostat, preserve_whitespace, & if (present(iostat)) then open(unit=xf%lun, file=filename, form="formatted", status="replace", & action="write", recl=xml_recl, iostat=iostat) - else + else open(unit=xf%lun, file=filename, form="formatted", status="replace", & action="write", recl=xml_recl) endif @@ -239,7 +239,7 @@ subroutine xml_OpenFile(filename, xf, unit, iostat, preserve_whitespace, & if (present(iostat)) then open(unit=xf%lun, file=filename, form="formatted", status="new", & action="write", recl=xml_recl, iostat=iostat) - else + else open(unit=xf%lun, file=filename, form="formatted", status="new", & action="write", recl=xml_recl) endif