[glibmm] gmmproc: DocsParser.pm (convert_tags_to_doxygen): Correct typo.



commit 63725e9d3e0715f863b14969da2bc7e7abc84fc0
Author: Josà Alburquerque <jaalburqu svn gnome org>
Date:   Wed Feb 8 16:49:23 2012 -0500

    gmmproc: DocsParser.pm (convert_tags_to_doxygen): Correct typo.
    
    	* tools/pm/DocsParser.pm (convert_tags_to_doxygen): Make the newline
    	following the <itemizedlist> tags optional when converting them to
    	Doxygen format (in case the tags are not necessarily on a line by
    	themselves).

 ChangeLog              |    9 +++++++++
 tools/pm/DocsParser.pm |    2 +-
 2 files changed, 10 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index b56db8c..bb3458e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2012-02-08  Josà Alburquerque  <jaalburquerque gmail com>
 
+	gmmproc: DocsParser.pm (convert_tags_to_doxygen): Correct typo.
+
+	* tools/pm/DocsParser.pm (convert_tags_to_doxygen): Make the newline
+	following the <itemizedlist> tags optional when converting them to
+	Doxygen format (in case the tags are not necessarily on a line by
+	themselves).
+
+2012-02-08  Josà Alburquerque  <jaalburquerque gmail com>
+
 	gmmproc: Translate the <itemizedlist> tags in docs correctly.
 
 	* tools/pm/DocsParser.pm (lookup_documentation): Typo.
diff --git a/tools/pm/DocsParser.pm b/tools/pm/DocsParser.pm
index f9ac265..5e80242 100644
--- a/tools/pm/DocsParser.pm
+++ b/tools/pm/DocsParser.pm
@@ -400,7 +400,7 @@ sub convert_tags_to_doxygen($)
     s"</?para>""g;
 
     # Convert <itemizedlist> tags to Doxygen format.
-    s"</?itemizedlist>\n""g;
+    s"</?itemizedlist>\n?""g;
     s"<listitem>(.*?)</listitem>"- $1"sg;
 
     # Use our Doxygen @newin alias:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]