From ddce42858c6210202360f959e12a5e4700bed5f4 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 7 Jan 2009 01:11:06 +1100 Subject: [PATCH] s/retVal/ret/ in buffer.followDocumentRelationship. --- common/content/buffer.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index add1c14a..0205966a 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1082,12 +1082,12 @@ function Buffer() //{{{ return false; } - let retVal = followFrame(window.content); - if (!retVal) - // only loop through frames if the main content didnt match - retVal = Array.some(window.content.frames, followFrame); + let ret = followFrame(window.content); + if (!ret) + // only loop through frames if the main content didn't match + ret = Array.some(window.content.frames, followFrame); - if (!retVal) + if (!ret) liberator.beep(); },