Skip to content

Commit 2d99103

Browse files
committed
rust-mode: tag -> enum. Closes #1577
1 parent 411cb28 commit 2d99103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/emacs/rust-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
(defvar rust-punc-chars "()[].,{}:;")
5353
(defvar rust-value-keywords
5454
(let ((table (make-hash-table :test 'equal)))
55-
(dolist (word '("mod" "type" "resource" "fn" "tag" "iface" "impl"))
55+
(dolist (word '("mod" "type" "resource" "fn" "enum" "iface" "impl"))
5656
(puthash word 'def table))
5757
(dolist (word '("if" "else" "while" "do" "for" "break" "cont" "ret" "be" "fail" "const"
5858
"check" "assert" "claim" "prove" "native" "import" "export" "let" "log"

0 commit comments

Comments
 (0)