Skip to content

Commit

Permalink
removed tab characters in source files The Fortran 95 standard does n…
Browse files Browse the repository at this point in the history
…ot allow tab characters in source code. These have been removed.
  • Loading branch information
wim authored and andreww committed Aug 18, 2008
1 parent ef63bbc commit 03e37fb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dom/m_dom_attribute.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions dom/m_dom_dom.F90
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ module m_dom_dom


public :: getNodeName
public :: getNodeValue
public :: getNodeValue
public :: setNodeValue
public :: getNodeType
public :: getParentNode
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dom/m_dom_node.m4
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TOHW_m_dom_publics(`

public :: getNodeName
public :: getNodeValue
public :: getNodeValue
public :: setNodeValue
public :: getNodeType
public :: getParentNode
Expand Down
2 changes: 1 addition & 1 deletion fsys/fox_m_fsys_string_list.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions wxml/m_wxml_core.F90
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,15 @@ 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
else
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
Expand Down

0 comments on commit 03e37fb

Please sign in to comment.