We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6de6684 commit a0f516eCopy full SHA for a0f516e
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# CHANGELONG
2
3
+## 1.14.2
4
+
5
+### Fixes
6
7
+* Fixes error while parsing submodule parent name with spaces
8
+ ([#207](https://github.com/hansec/fortran-language-server/issues/207))
9
10
## 1.14.1
11
12
### Fixes
fortls/parse_fortran.py
@@ -693,7 +693,7 @@ def read_submod_def(line):
693
else:
694
trailing_line = ""
695
#
696
- name_match = WORD_REGEX.match(trailing_line)
+ name_match = WORD_REGEX.search(trailing_line)
697
if name_match is not None:
698
name = name_match.group(0).lower()
699
return "smod", SMOD_info(name, parent_name)
0 commit comments