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 0a7db97 commit c0eb26cCopy full SHA for c0eb26c
jprops.py
@@ -27,7 +27,7 @@ def getJavaProperties(propfile):
27
ESC_DELIM = r'\\' # '\'
28
ESCAPED_ESC_DELIM = r'\\\\' # '\\'
29
COMMENT_LINE = re.compile('\s*[#!].*') # starts with #|! ignore white space
30
- MULTI_LINE = re.compile(r'.*[\\]\s*$') # ending with '\' ignore white space
+ MULTI_LINE = re.compile(r'.*[\\]\.*$') # ending with '\' ignore white space and tabs
31
# non escaped =|:|' '|tab|formfeed, include surrounding non escaped white space
32
SPLIT_DELIM = re.compile(r'(?<!\\)\s*(?<!\\)[=: \t\f]\s*')
33
# match escape characters '\', except escaped '\\' and unicode escape '\u'
0 commit comments