From 1f2bf969d18bee4040c10776d79ec7d7d45c0542 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 7 Jan 2009 17:16:08 -0500 Subject: [PATCH] Fix completion bug --- common/content/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/ui.js b/common/content/ui.js index 0ee238b2..e069478f 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -380,7 +380,7 @@ function CommandLine() //{{{ { // Wait for contexts to complete if necessary. // FIXME: Need to make idx relative to individual contexts. - let list = this.context.contextList.reverse(); + let list = this.context.contextList; if (idx == -2) list = list.slice().reverse(); let n = 0;