[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 14:55:17 UTC 2010


The following commit has been merged in the master branch:
commit 3f7bbec6df9b6a821ab6e275cca2dc44e37bc3cd
Author: John Goerzen <jgoerzen at complete.org>
Date:   Tue Feb 15 05:37:01 2005 +0100

    ConfigParser: accept empty values
    
    Keywords:
    
    
    (jgoerzen at complete.org--projects/missingh--head--0.7--patch-203)

diff --git a/ChangeLog b/ChangeLog
index b6556e1..d24207d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,18 @@
 # arch-tag: automatic-ChangeLog--jgoerzen at complete.org--projects/missingh--head--0.7
 #
 
+2005-02-14 22:37:01 GMT	John Goerzen <jgoerzen at complete.org>	patch-203
+
+    Summary:
+      ConfigParser: accept empty values
+    Revision:
+      missingh--head--0.7--patch-203
+
+
+    modified files:
+     ChangeLog MissingH/ConfigParser/Lexer.hs debian/changelog
+
+
 2005-02-03 21:59:32 GMT	John Goerzen <jgoerzen at complete.org>	patch-202
 
     Summary:
diff --git a/MissingH/ConfigParser/Lexer.hs b/MissingH/ConfigParser/Lexer.hs
index 14b885a..5b9ec9a 100644
--- a/MissingH/ConfigParser/Lexer.hs
+++ b/MissingH/ConfigParser/Lexer.hs
@@ -81,7 +81,7 @@ extension_line = do many1 whitespace_chars
                     return (c1 : remainder)
 
 optionkey = many1 oname_chars
-optionvalue = many1 value_chars
+optionvalue = many value_chars
 optionpair = do key <- optionkey
                 optionsep
                 value <- optionvalue
diff --git a/debian/changelog b/debian/changelog
index 27931fd..8102cad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+missingh (0.9.1) unstable; urgency=low
+
+  * ConfigParser: accept values that are empty
+
+ -- John Goerzen <jgoerzen at complete.org>  Mon, 14 Feb 2005 16:36:27 -0600
+
 missingh (0.9.0) unstable; urgency=low
 
   * New module: MissingH.AnyDBM.  Integrated support for HashTable and

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list