Remove quotes around inline function code that was once a local Function object. Oops. Thanks to McCabe for finding this. a=brendan

This commit is contained in:
mj%digicool.com 2000-05-25 20:10:47 +00:00
Родитель 108b7677fd
Коммит e2a7d6c939
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -18,9 +18,9 @@
/*
* nsXmlRpcClient XPCOM component
* Version: $Revision: 1.6 $
* Version: $Revision: 1.7 $
*
* $Id: nsXmlRpcClient.js,v 1.6 2000/05/09 11:33:41 mj%digicool.com Exp $
* $Id: nsXmlRpcClient.js,v 1.7 2000/05/25 20:10:47 mj%digicool.com Exp $
*/
/*
@ -835,7 +835,7 @@ Value.prototype = {
set value(val) {
// accepts [0-9]+ or x[0-9a-fA-F]+ and returns the character.
function entityTrans(substr, code) {
'return String.fromCharCode("0" + code);';
return String.fromCharCode("0" + code);
}
switch (this.type) {