summaryrefslogtreecommitdiff
path: root/common/modules/highlight.jsm
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2010-09-22 23:44:04 +1000
committerDoug Kearns <dougkearns@gmail.com>2010-09-22 23:44:04 +1000
commitcce6bb653e6cd5d4650c726a80cf777ec4af7f61 (patch)
treeac62b999b3ed7751de01a33a4c3f804f86c73c55 /common/modules/highlight.jsm
parent39cbb91490180324a353420b1bcfdd9a5494aa38 (diff)
downloadpentadactyl-cce6bb653e6cd5d4650c726a80cf777ec4af7f61.tar.gz
Add missing semicolons.
...let the good times roll.
Diffstat (limited to 'common/modules/highlight.jsm')
-rw-r--r--common/modules/highlight.jsm4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/modules/highlight.jsm b/common/modules/highlight.jsm
index bc967faf..92644273 100644
--- a/common/modules/highlight.jsm
+++ b/common/modules/highlight.jsm
@@ -147,7 +147,7 @@ const Highlights = Module("Highlight", {
*/
selector: function (class_) {
let [, hl, rest] = class_.match(/^(\w*)(.*)/);
- let pattern = "[dactyl|highlight~=" + hl + "]"
+ let pattern = "[dactyl|highlight~=" + hl + "]";
if (this.highlight[hl] && this.highlight[hl].class != class_)
pattern = this.highlight[hl].selector;
return pattern + rest;
@@ -318,7 +318,7 @@ const Highlights = Module("Highlight", {
context.completions = array.flatten(
modules.io.getRuntimeDirectories("colors").map(
function (dir) dir.readDirectory().filter(
- function (file) /\.vimp$/.test(file.leafName))))
+ function (file) /\.vimp$/.test(file.leafName))));
};