[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:36:43 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5a4ab9409e007dfcd926b9edcc0db3b29ded0e77
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Apr 25 15:10:24 2004 +0000

            Reviewed by Dave.
    
            * Misc.subproj/WebNSURLExtras.m: (hexDigit): Use capitalized hex, not lowercase, for consistency
            with similar functions in WebCore and what other web browsers do.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6477 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index ae4dc7b..949fef0 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2004-04-24  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave.
+
+        * Misc.subproj/WebNSURLExtras.m: (hexDigit): Use capitalized hex, not lowercase, for consistency
+        with similar functions in WebCore and what other web browsers do.
+
 2004-04-23  Darin Adler  <darin at apple.com>
 
         Reviewed by Maciej.
diff --git a/WebKit/Misc.subproj/WebNSURLExtras.m b/WebKit/Misc.subproj/WebNSURLExtras.m
index 2ca04be..23f651c 100644
--- a/WebKit/Misc.subproj/WebNSURLExtras.m
+++ b/WebKit/Misc.subproj/WebNSURLExtras.m
@@ -32,7 +32,7 @@ static char hexDigit(int i)
     }
     int h = i;
     if (h >= 10) {
-        h = h - 10 + 'a'; 
+        h = h - 10 + 'A'; 
     }
     else {
         h += '0';

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list