rename reserved word char to c

This commit is contained in:
Philipp Borgers 2013-01-24 01:23:01 +01:00
parent 5e3cfe5d47
commit cf6da99fca

View File

@ -63,9 +63,9 @@ p.addCString = function(string) {
return this;
};
p.addChar = function(char) {
p.addChar = function(c) {
this._ensure(1);
writeString(this.buffer, char, this.offset, 1);
writeString(this.buffer, c, this.offset, 1);
this.offset++;
return this;
};