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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:48:33 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 64f3fe7763058be892587403611535f39459349e
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 24 22:27:58 2003 +0000

    	Removed unnecessary log.
    
            Reviewed by John.
    
            * WebCoreSupport.subproj/WebImageRendererFactory.m:
            (-[WebImageRendererFactory imageRendererWithData:MIMEType:]):
    
    	Add another check to use ATSU for Limbu (Unicode 4.0) script.
    	Also made shouldUseATSU inline.
    
            * WebCoreSupport.subproj/WebTextRenderer.m:
            (shouldUseATSU):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4705 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index c8d3f03..71c93cd 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,18 @@
+2003-07-24  Richard Williamson   <rjw at apple.com>
+
+	Removed unnecessary log.
+
+        Reviewed by John.
+
+        * WebCoreSupport.subproj/WebImageRendererFactory.m:
+        (-[WebImageRendererFactory imageRendererWithData:MIMEType:]):
+	
+	Add another check to use ATSU for Limbu (Unicode 4.0) script.
+	Also made shouldUseATSU inline.
+
+        * WebCoreSupport.subproj/WebTextRenderer.m:
+        (shouldUseATSU):
+
 === Safari-90 ===
 
 2003-07-23  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRendererFactory.m b/WebKit/WebCoreSupport.subproj/WebImageRendererFactory.m
index f9b1aef..880d876 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRendererFactory.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRendererFactory.m
@@ -76,7 +76,6 @@
     NSArray *reps = [imageRenderer representations];
     if ([reps count] == 0){
         [imageRenderer release];
-        NSLog (@"Unable to allocate image renderer");
         return nil;
     }
     
diff --git a/WebKit/WebCoreSupport.subproj/WebTextRenderer.m b/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
index e6690a3..769e295 100644
--- a/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
@@ -98,7 +98,7 @@ struct SubstituteFontWidthMap {
 #define FixToFloat(f) ((float)((f)  * (1./(float)kFixedOne)))
 #define FloatToFixed(a) ((Fixed)((float)(a) * fixed1))
 
-static BOOL shouldUseATSU(WebCoreTextRun run)
+static inline BOOL shouldUseATSU(WebCoreTextRun run)
 {
     UniChar c;
     const UniChar *characters = run.characters;
@@ -121,6 +121,8 @@ static BOOL shouldUseATSU(WebCoreTextRun run)
             return YES;
         if (c >= 0x1780 && c <= 0x18AF)     // U+1780 through U+18AF Khmer, Mongolian
             return YES;
+        if (c >= 0x1900 && c <= 0x194F)     // U+1900 through U+194F Limbu (Unicode 4.0)
+            return YES;
     }
     
     return NO;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list