From c0a5a680b8f01036c07926bd638418a0b6e9e449 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 2 Oct 2010 21:03:30 +1000 Subject: [PATCH] Fix :helpall {arg}. --- common/content/dactyl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 4c4765b1..99725d18 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -417,7 +417,7 @@ const Dactyl = Module("dactyl", { * @returns {string} */ findHelp: function (topic, unchunked) { - if (topic in services.get("dactyl:").FILE_MAP) + if (!unchunked && topic in services.get("dactyl:").FILE_MAP) return topic; unchunked = !!unchunked; let items = completion._runCompleter("help", topic, null, unchunked).items;