Displaying 2 results from an estimated 2 matches for "fdsa".
Did you mean:
dsa
2020 Jan 23
6
Re: [common PATCH] Trim whitespaces from commands read from file
On Thu, Jan 23, 2020 at 02:04:53PM +0100, Martin Kletzander wrote:
> On Thu, Jan 23, 2020 at 12:16:50PM +0100, Martin Kletzander wrote:
> >Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
>
> I forgot to mention this is trying to fix the following BZ:
>
> https://bugzilla.redhat.com/show_bug.cgi?id=1351000
> >---
> >mlcustomize/customize_cmdline.ml |
2020 Jan 29
0
Re: [common PATCH] Trim whitespaces from commands read from file
...;bugs-in-changelog script.
>
>ACK
>
I found that this is still not enough to make it behave in a nice way. What we
probably want is the split, which happens few lines lower, to actually behave
similar to Str.split, which actually splits by any number of the delimiters (so
that "asdf fdsa" is split into ["asdf"; "fdsa"] and not ["asdf"; ""; "fdsa"].
I know this fix is not important at all, but since I wanted to exercise some
OCaml, I will try to fix that implementation instead.
Do any one of you know of a part of any libguestf...