Skip to content

Commit

Permalink
fix: invalid defvar declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
russell committed Apr 30, 2022
1 parent 4e1ed46 commit 8532efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cue-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ syntax that the rule operates on."
value))

(defvar cue-smie-grammar
"CUE language grammar tables"
(smie-prec2->grammar
(smie-merge-prec2s
(smie-bnf->prec2
Expand All @@ -166,7 +165,8 @@ syntax that the rule operates on."
(left "&&" "&")
(nonassoc "=~" "!~" "!=" "==" "<=" ">=" "<" ">")
(left "+" "-")
(left "*" "/"))))))
(left "*" "/")))))
"CUE language grammar tables.")

;; Operators
;; + && == < = ( )
Expand Down

0 comments on commit 8532efd

Please sign in to comment.