diff --git a/_sources/fortls_changes.md.txt b/_sources/fortls_changes.md.txt index a0855722..c999ec92 100644 --- a/_sources/fortls_changes.md.txt +++ b/_sources/fortls_changes.md.txt @@ -149,6 +149,8 @@ - Fixed bug where parser would crash when trying to retrieve an invalid line no. ([#398](https://github.com/fortran-lang/fortls/issues/398)) +- Fixed bug with string quotes not being escaped when looking for parenthesis + ([#250](https://github.com/fortran-lang/fortls/issues/250)) - Fixed end of scope errors raised by trailing semicolon in native parser ([#265](https://github.com/fortran-lang/fortls/issues/265)) - Fixed bug where parent scope for includes in AST could be `None` diff --git a/_static/documentation_options.js b/_static/documentation_options.js index e853f6a7..81b12a10 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '0.1.dev1+gf29b02d', + VERSION: '0.1.dev1+gc8df48b', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/contact.html b/contact.html index 358c0e5c..768f8831 100644 --- a/contact.html +++ b/contact.html @@ -354,7 +354,7 @@
>>> find_paren_match('nt(sin(0.5))+8+len("ab((c")-3) :: y')
+29
+
>>> find_paren_match("nt(sin(0.5))+8+len('ab))c')-3) :: y")
+29
+
Fixed bug where parser would crash when trying to retrieve an invalid line no. (#398)
Fixed bug with string quotes not being escaped when looking for parenthesis +(#250)
Fixed end of scope errors raised by trailing semicolon in native parser (#265)
Fixed bug where parent scope for includes in AST could be None
@@ -633,7 +635,7 @@