Merge pull request #6 from jtdaugherty/bidir parseIni: make newline after section heading explicit (fixes #4)
G. D. Ritter authored
7 years ago
GitHub committed
7 years ago
1 changed file(s) with
1 addition(s)
and
0 deletion(s)
.
Collapse all
Expand all
+1
-0
src/Data/Ini/Config/Raw.hs
less
more
124
124
void (char '[')
125
125
name <- T.pack `fmap` some (noneOf "[]")
126
126
void (char ']')
127
void eol
127
128
comments <- sBlanks
128
129
pPairs (T.strip name) start leading prevs comments Seq.empty
129
130