mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 05:39:31 +03:00
add: fix breakage when creating file, ignore backslash in names line
This commit is contained in:
parent
157ec857d4
commit
6566ef5fa2
@ -279,7 +279,7 @@ parseHelpTemplate t =
|
||||
[] -> Nothing
|
||||
(l:ls) -> Just (names, shorthelp, longhelplines)
|
||||
where
|
||||
names = words $ map (\c -> if c==',' then ' ' else c) l
|
||||
names = words $ map (\c -> if c `elem` [',','\\'] then ' ' else c) l
|
||||
(shorthelpls, longhelpls) = break (== "_FLAGS_") ls
|
||||
shorthelp = unlines $ reverse $ dropWhile null $ reverse shorthelpls
|
||||
longhelplines = dropWhile null $ drop 1 longhelpls
|
||||
|
Loading…
Reference in New Issue
Block a user