From 34669db924a194d2651b901e70e879cf0d0bbbeb Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Thu, 2 Apr 2009 11:35:15 +0100 Subject: [PATCH] Fix / May further break certain edge-cases on * and # if it detects the current word as being a "", but they are already broken. --- common/content/find.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/find.js b/common/content/find.js index b6e9afe7..b354b343 100644 --- a/common/content/find.js +++ b/common/content/find.js @@ -457,9 +457,9 @@ function Search() //{{{ if (typeof forcedBackward === "boolean") backwards = forcedBackward; - // use the last pattern if none specified + //Allow / to work. if (!command) - command = lastSearchPattern; + return this.findAgain(backwards != lastSearchBackwards) this.clear();