From 9b0c167d75b35c11ff8f30a2a14666d3c84df848 Mon Sep 17 00:00:00 2001
From: Yury Delendik <ydelendik@mozilla.com>
Date: Mon, 22 Sep 2014 16:20:33 -0500
Subject: [PATCH] PDF.js version 1.0.109

---
 bower.json            | 2 +-
 build/pdf.combined.js | 6 ++++--
 build/pdf.js          | 4 ++--
 build/pdf.worker.js   | 6 ++++--
 package.json          | 2 +-
 5 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/bower.json b/bower.json
index b3ebf0b27..b0e01d4ae 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
 {
   "name": "pdfjs-dist",
-  "version": "1.0.107",
+  "version": "1.0.109",
   "keywords": [
     "Mozilla",
     "pdf",
diff --git a/build/pdf.combined.js b/build/pdf.combined.js
index 50aebc1a0..d7225d257 100644
--- a/build/pdf.combined.js
+++ b/build/pdf.combined.js
@@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
   (typeof window !== 'undefined' ? window : this).PDFJS = {};
 }
 
-PDFJS.version = '1.0.107';
-PDFJS.build = '6c5a308';
+PDFJS.version = '1.0.109';
+PDFJS.build = '75d6792';
 
 (function pdfjsWrapper() {
   // Use strict in our context only - users might not want it
@@ -25467,6 +25467,8 @@ var Font = (function FontClosure() {
            fontCharCode === 0x7F || // Control char
            fontCharCode === 0xAD || // Soft hyphen
            (fontCharCode >= 0x80 && fontCharCode <= 0x9F) || // Control chars
+           // Prevent drawing characters in the specials unicode block.
+           (fontCharCode >= 0xFFF0 && fontCharCode <= 0xFFFF) ||
            (isSymbolic && isIdentityUnicode)) &&
           nextAvailableFontCharCode <= PRIVATE_USE_OFFSET_END) { // Room left.
         // Loop to try and find a free spot in the private use area.
diff --git a/build/pdf.js b/build/pdf.js
index c68360924..1020f1fca 100644
--- a/build/pdf.js
+++ b/build/pdf.js
@@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
   (typeof window !== 'undefined' ? window : this).PDFJS = {};
 }
 
-PDFJS.version = '1.0.107';
-PDFJS.build = '6c5a308';
+PDFJS.version = '1.0.109';
+PDFJS.build = '75d6792';
 
 (function pdfjsWrapper() {
   // Use strict in our context only - users might not want it
diff --git a/build/pdf.worker.js b/build/pdf.worker.js
index ed9721abf..eb8e9fa08 100644
--- a/build/pdf.worker.js
+++ b/build/pdf.worker.js
@@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
   (typeof window !== 'undefined' ? window : this).PDFJS = {};
 }
 
-PDFJS.version = '1.0.107';
-PDFJS.build = '6c5a308';
+PDFJS.version = '1.0.109';
+PDFJS.build = '75d6792';
 
 (function pdfjsWrapper() {
   // Use strict in our context only - users might not want it
@@ -20889,6 +20889,8 @@ var Font = (function FontClosure() {
            fontCharCode === 0x7F || // Control char
            fontCharCode === 0xAD || // Soft hyphen
            (fontCharCode >= 0x80 && fontCharCode <= 0x9F) || // Control chars
+           // Prevent drawing characters in the specials unicode block.
+           (fontCharCode >= 0xFFF0 && fontCharCode <= 0xFFFF) ||
            (isSymbolic && isIdentityUnicode)) &&
           nextAvailableFontCharCode <= PRIVATE_USE_OFFSET_END) { // Room left.
         // Loop to try and find a free spot in the private use area.
diff --git a/package.json b/package.json
index c33cac6be..4fd4c3810 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "pdfjs-dist",
-  "version": "1.0.107",
+  "version": "1.0.109",
   "description": "Generic build of Mozilla's PDF.js library.",
   "keywords": [
     "Mozilla",