From: Vivien Nicolas <21@vingtetun.org> Date: Thu, 23 Jun 2011 20:20:55 +0000 (+0200) Subject: Fix bustage of the previous commit X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=873d6df1f580e9a9c01004a53ee55d7ad965654e;p=pdf.js.git Fix bustage of the previous commit --- diff --git a/fonts.js b/fonts.js index f783c45..2c63adf 100644 --- a/fonts.js +++ b/fonts.js @@ -517,7 +517,7 @@ var Font = (function () { // Insert the missing table tables.push({ tag: "OS/2", - data: stringToArray(createOS2Table) + data: stringToArray(createOS2Table()) }); // Replace the old CMAP table with a shiny new one @@ -643,7 +643,7 @@ var Font = (function () { createTableEntry(otf, offsets, "CFF ", CFF); /** OS/2 */ - OS2 = createOS2Table(); + OS2 = stringToArray(createOS2Table()); createTableEntry(otf, offsets, "OS/2", OS2); //XXX Getting charstrings here seems wrong since this is another CFF glue