[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

darin at apple.com darin at apple.com
Wed Dec 22 12:46:48 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3dd064f1eaf7e328391afbb0b9f6e89aed0aade8
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 30 03:26:19 2010 +0000

    https://bugs.webkit.org/show_bug.cgi?id=40589
    
    * Scripts/prepare-ChangeLog: Only prepend namespaces to non-empty
    function names.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66350 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 9d5d582..723e33c 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,10 @@
+2010-08-29  Darin Adler  <darin at apple.com>
+
+        https://bugs.webkit.org/show_bug.cgi?id=40589
+
+        * Scripts/prepare-ChangeLog: Only prepend namespaces to non-empty
+        function names.
+
 2010-08-26  Holger Hans Peter Freyther  <holger at moiji-mobile.com>
 
         Reviewed by Darin Adler.
diff --git a/WebKitTools/Scripts/prepare-ChangeLog b/WebKitTools/Scripts/prepare-ChangeLog
index 45aca1b..c2adaf5 100755
--- a/WebKitTools/Scripts/prepare-ChangeLog
+++ b/WebKitTools/Scripts/prepare-ChangeLog
@@ -715,7 +715,7 @@ sub get_function_line_ranges_for_c($$)
                 if (!$in_braces and $potential_start) {
                     $start = $potential_start;
                     $name = $potential_name;
-                    if (@namespaces && (length($name) < 2 || substr($name,1,1) ne "[")) {
+                    if (@namespaces && $name && (length($name) < 2 || substr($name,1,1) ne "[")) {
                         $name = join ('::', @namespaces, $name);
                     }
                 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list