From 2aeb0030cd8d5f92a1f56e3cbc7300f2e4208761 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 11 Feb 2011 10:33:55 -0500 Subject: [PATCH] Fix :au listing. Yay tests. --- common/content/autocommands.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/content/autocommands.js b/common/content/autocommands.js index c5357fe1..68bea161 100644 --- a/common/content/autocommands.js +++ b/common/content/autocommands.js @@ -75,8 +75,7 @@ var AutoCommands = Module("autocommands", { }); }, - get activeHives() contexts.initializedGroups("autocmd") - .filter(function (h) h._store.length), + get activeHives() contexts.allGroups.autocmd.filter(function (h) h._store.length), add: deprecated("autocommand.user.add", { get: function add() autocommands.user.closure.add }), get: deprecated("autocommand.user.get", { get: function get() autocommands.user.closure.get }),