| Index: frog/frogsh
|
| diff --git a/frog/frogsh b/frog/frogsh
|
| index 4233746935527932e3fe8ac1ed9dd10873cb86fb..532821afc9f1eebfbc90c64af0a9f5e5a8e96eb8 100755
|
| --- a/frog/frogsh
|
| +++ b/frog/frogsh
|
| @@ -2485,7 +2485,7 @@ StringImplementation.prototype._replaceFirst = function(from, to) {
|
| return this.replace(from, to);
|
| }
|
| StringImplementation.prototype._replaceFirstRegExp = function(from, to) {
|
| - console.log(require('util').inspect(from)); return this.replace(from.re, to);
|
| + return this.replace(from.re, to);
|
| }
|
| StringImplementation.prototype.replaceFirst = function(from, to) {
|
| if ((typeof(from) == 'string')) return this._replaceFirst($assert_String(from), to);
|
|
|