Skip to content

Commit d591332

Browse files
authored
Reduce max line length (#5)
2 parents 1c6d06c + f9597d1 commit d591332

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/shlex_module.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,8 @@ function split_joined_error(pattern, join_spaced, keep_quotes, error) result(lis
239239
if (len_trim(tok%string)==2) then
240240

241241
if (tok%string(1:1) == '-' .and. &
242-
(tok%string(2:2) >= 'A' .and. tok%string(2:2) <= 'Z' .or. tok%string(2:2) >= 'a' .and. tok%string(2:2) <= 'z')) then
242+
(tok%string(2:2) >= 'A' .and. tok%string(2:2) <= 'Z' .or. &
243+
tok%string(2:2) >= 'a' .and. tok%string(2:2) <= 'z')) then
243244
if (i + 1 <= n) then
244245
next_tok = raw(i + 1)
245246
if (.not. (len_trim(next_tok%string) >= 1 .and. next_tok%string(1:1) == '-')) then

0 commit comments

Comments
 (0)