diff options
author | Doug Kearns <dougkearns@gmail.com> | 2010-10-02 21:03:30 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2010-10-02 21:03:30 +1000 |
commit | c0a5a680b8f01036c07926bd638418a0b6e9e449 (patch) | |
tree | 81e8aa2ad617d8800916b4a099b12f3a680f71b3 | |
parent | 2c1555b6515864574fafad1c58ab8e1c547168b3 (diff) | |
download | pentadactyl-c0a5a680b8f01036c07926bd638418a0b6e9e449.tar.gz |
Fix :helpall {arg}.
-rw-r--r-- | common/content/dactyl.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |