Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 40278 invoked from network); 20 Nov 2010 15:57:24 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 20 Nov 2010 15:57:24 -0000 Received: (qmail 21893 invoked by uid 500); 20 Nov 2010 15:57:56 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 21818 invoked by uid 500); 20 Nov 2010 15:57:55 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 21811 invoked by uid 99); 20 Nov 2010 15:57:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Nov 2010 15:57:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Nov 2010 15:57:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 15A4323889E9; Sat, 20 Nov 2010 15:56:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037246 - /couchdb/branches/1.0.x/share/server/util.js Date: Sat, 20 Nov 2010 15:56:41 -0000 To: commits@couchdb.apache.org From: fdmanana@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101120155641.15A4323889E9@eris.apache.org> Author: fdmanana Date: Sat Nov 20 15:56:40 2010 New Revision: 1037246 URL: http://svn.apache.org/viewvc?rev=1037246&view=rev Log: Merged revision 1037245 from trunk: Fix recursive call: recursivelySeal is not defined within the body of the anonymous function declaration. Modified: couchdb/branches/1.0.x/share/server/util.js Modified: couchdb/branches/1.0.x/share/server/util.js URL: http://svn.apache.org/viewvc/couchdb/branches/1.0.x/share/server/util.js?rev=1037246&r1=1037245&r2=1037246&view=diff ============================================================================== --- couchdb/branches/1.0.x/share/server/util.js (original) +++ couchdb/branches/1.0.x/share/server/util.js Sat Nov 20 15:56:40 2010 @@ -99,7 +99,7 @@ var Couch = { seal(obj); for (var propname in obj) { if (typeof obj[propname] == "object") { - recursivelySeal(obj[propname]); + arguments.callee(obj[propname]); } } }