Avoid allocations in executeCommand().
This commit is contained in:
parent
3759c11f42
commit
6c698519cd
@ -4779,7 +4779,7 @@ var Type1CharString = (function Type1CharStringClosure() {
|
|||||||
if (keepStack) {
|
if (keepStack) {
|
||||||
this.stack.splice(start, howManyArgs);
|
this.stack.splice(start, howManyArgs);
|
||||||
} else {
|
} else {
|
||||||
this.stack = [];
|
this.stack.length = 0;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user