The content found in .ini files does not support \ quoting, so the \\
results in to '\' which we don't want.
Signed-off-by: NeilBrown <neil@brown.name>
fill-width = 72
word-wrap = 1
fill:start-re = "^("
- "[^a-zA-Z0-9\\n]*$|" # empty/puctuation line
+ "[^a-zA-Z0-9\n]*$|" # empty/puctuation line
" *-|" # list item
- " *- *\\[[ X]]|" # todo list item
+ " *- *\[[ X]]|" # todo list item
" *#+|" # section head
- " *[0-9]*\\.)" # Numbered list
+ " *[0-9]*\.)" # Numbered list
[include]