X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FConsole%2FParse.ih;h=e0e42d63209e3b0b50abbbc9647a2a33a93eb081;hb=975639608e44e49058ccd52f05ffe6b21faeafef;hp=3af920fe1c39746e57637d2517264d9e1caa7e77;hpb=26610f603ebdd465307b9621f532c1fe19fd5571;p=senf.git diff --git a/senf/Utils/Console/Parse.ih b/senf/Utils/Console/Parse.ih index 3af920f..e0e42d6 100644 --- a/senf/Utils/Console/Parse.ih +++ b/senf/Utils/Console/Parse.ih @@ -293,12 +293,12 @@ namespace detail { relpath = ( word [ push_back(path_, token_) ] - % ch_p('/') ) - >> ( ! ch_p('/') [ push_back(path_, construct_()) ] ) + % +ch_p('/') ) + >> ( ! (+ch_p('/') ) [ push_back(path_, construct_()) ] ) ; abspath - = ch_p('/') [ push_back(path_, construct_()) ] + = (+ch_p('/')) [ push_back(path_, construct_()) ] >> ( relpath | eps_p [ push_back(path_, construct_()) ] ) ;