File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ contains
125
125
character(len=*), intent(in), optional :: fmt
126
126
character(len=1), intent(in), optional :: delimiter
127
127
character(len=:), allocatable :: fmt_
128
+ character(len=1) :: delimiter_
128
129
!!
129
130
!! Example
130
131
!! -------
@@ -148,6 +149,7 @@ contains
148
149
149
150
skiprows_ = max(optval(skiprows, 0), 0)
150
151
max_rows_ = optval(max_rows, -1)
152
+ delimiter_ = optval(delimiter, " ")
151
153
152
154
s = open(filename)
153
155
@@ -158,11 +160,9 @@ contains
158
160
159
161
! determine number of columns
160
162
ncol = 0
161
- if ( skiprows_ < nrow ) ncol = number_of_columns(s, skiprows=skiprows_, delimiter=delimiter )
163
+ if ( skiprows_ < nrow ) ncol = number_of_columns(s, skiprows=skiprows_, delimiter=delimiter_ )
162
164
#:if 'complex' in t1
163
- if (present(delimiter)) then
164
- if (is_blank(delimiter)) ncol = ncol / 2
165
- end if
165
+ if (is_blank(delimiter_)) ncol = ncol / 2
166
166
#:endif
167
167
168
168
allocate(d(max_rows_, ncol))
You can’t perform that action at this time.
0 commit comments