Bug 296702 - Fix parser code for new quoted property names.

ChatZilla only.
r=samuel
This commit is contained in:
silver%warwickcompsoc.co.uk 2005-12-04 22:39:49 +00:00
Родитель efd6b8c912
Коммит 175450f8f7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -233,7 +233,7 @@ function ts_deserialize()
}
// Split each line into "command params...".
var parts = this._lines[0].match(/^\s*(\w+)(?:\s+(.*))?$/);
var parts = this._lines[0].match(/^\s*(\S+)(?:\s+(.*))?$/);
var command = parts[1];
var params = parts[2];