From 4c032c5e14c6241984830c53973516382fae28af Mon Sep 17 00:00:00 2001 From: Michael Andres Date: Wed, 21 Dec 2011 17:52:11 +0100 Subject: [PATCH] Fix zypp.conf lens (bnc#687530) --- src/utils/zypper.aug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/zypper.aug b/src/utils/zypper.aug index 14d2415..757ca76 100644 --- a/src/utils/zypper.aug +++ b/src/utils/zypper.aug @@ -53,10 +53,10 @@ module ZYpper = let commented = [ label "commented" . del /#[ \t]*/ "# " . store_to_eol? . eol ] (* Matches key=value, creates a new node out of key and stores the value *) - let kv = [ key kw_re . del /[ \t]*=[ \t]*/ " = " . store /[^ \t\n]([^\n]*[^ \t\n])?/ . del_opt_ws "" ] + let kv = [ del_opt_ws "" . key kw_re . del /[ \t]*=[ \t]*/ " = " . store /[^ \t\n]([^\n]*[^ \t\n])?/ . eol ] (* An option consists of ## description, # commented lines and an optionall key=value pair. *) - let option = [ seq "option" . description* . commented* . del_opt_ws "" . kv? . del_str "\n" ] + let option = [ seq "option" . description* . commented* . kv? ] (* ****************( section )*************** *) -- 2.7.4