[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 07:58:29 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 075a573cc58477f1a592dfd42447ac99ce45e009
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 30 18:35:43 2003 +0000

            Reviewed by Dave.
    
            Rolled in Harri Porten's change to accept non-breaking space in JavaScript.
    
            * kjs/lexer.cpp: (Lexer::isWhiteSpace): Accept 00A0 as "whitespace".
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5083 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 8652ea8..f259998 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,11 @@
+2003-09-30  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave.
+
+        Rolled in Harri Porten's change to accept non-breaking space in JavaScript.
+
+        * kjs/lexer.cpp: (Lexer::isWhiteSpace): Accept 00A0 as "whitespace".
+
 2003-09-25  Maciej Stachowiak  <mjs at apple.com>
 
 	Roll out build system change since it did not actually work. :-(
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 8652ea8..f259998 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2003-09-30  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave.
+
+        Rolled in Harri Porten's change to accept non-breaking space in JavaScript.
+
+        * kjs/lexer.cpp: (Lexer::isWhiteSpace): Accept 00A0 as "whitespace".
+
 2003-09-25  Maciej Stachowiak  <mjs at apple.com>
 
 	Roll out build system change since it did not actually work. :-(
diff --git a/JavaScriptCore/kjs/lexer.cpp b/JavaScriptCore/kjs/lexer.cpp
index 26b503b..def7073 100644
--- a/JavaScriptCore/kjs/lexer.cpp
+++ b/JavaScriptCore/kjs/lexer.cpp
@@ -539,7 +539,7 @@ int Lexer::lex()
 bool Lexer::isWhiteSpace() const
 {
   return (current == ' ' || current == '\t' ||
-          current == 0x0b || current == 0x0c);
+          current == 0x0b || current == 0x0c || current == 0xa0);
 }
 
 bool Lexer::isLineTerminator()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list