use strict in the utils/ too

This commit is contained in:
Chris Jones 2011-06-18 23:21:30 -07:00
parent 92fa629d10
commit 8c802e5025
2 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,10 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
"use strict";
var CFFStrings = [ var CFFStrings = [
".notdef", ".notdef",
"space", "space",
"exclam", "exclam",
"quotedbl", "quotedbl",
@ -490,7 +495,7 @@ var CFFDictDataMap = {
}, },
"10": { "10": {
name: "StdHW" name: "StdHW"
}, },
"11": { "11": {
name: "StdVW" name: "StdVW"
}, },
@ -597,7 +602,7 @@ var CFFDictDataMap = {
}, },
"18": { "18": {
name: "Private", name: "Private",
operand: "number number" operand: "number number"
}, },
"19": { "19": {
name: "Subrs" name: "Subrs"

View File

@ -1,3 +1,8 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
"use strict";
/** /**
* The Type2 reader code below is only used for debugging purpose since Type2 * The Type2 reader code below is only used for debugging purpose since Type2
* is only a CharString format and is never used directly as a Font file. * is only a CharString format and is never used directly as a Font file.