readline: fix for unicode prompts

prompt length is char length, not byte length
This commit is contained in:
Tim Macfarlane 2012-06-29 10:33:58 +01:00 коммит произвёл Ben Noordhuis
Родитель 0c47219a72
Коммит 0dba28b5c2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -136,7 +136,7 @@ Interface.prototype.setPrompt = function(prompt, length) {
} else {
var lines = prompt.split(/[\r\n]/);
var lastLine = lines[lines.length - 1];
this._promptLength = Buffer.byteLength(lastLine);
this._promptLength = lastLine.length;
}
};