Skip to content

Commit 22861a0

Browse files
committed
Make linter pass
1 parent c49bb5f commit 22861a0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

mode/xquery/xquery.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@ CodeMirror.defineMode("xquery", function() {
1919
var keywords = function(){
2020
// convenience functions used to build keywords object
2121
function kw(type) {return {type: type, style: "keyword"};}
22-
var A = kw("keyword a")
23-
, B = kw("keyword b")
24-
, C = kw("keyword c")
25-
, operator = kw("operator")
22+
var operator = kw("operator")
2623
, atom = {type: "atom", style: "atom"}
2724
, punctuation = {type: "punctuation", style: null}
2825
, qualifier = {type: "axis_specifier", style: "qualifier"};

0 commit comments

Comments
 (0)