From 260564a3e47fc87a9194b8f2241ab8dd04f0116f Mon Sep 17 00:00:00 2001 Message-Id: <260564a3e47fc87a9194b8f2241ab8dd04f0116f.1715184586.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 14 Feb 2019 13:08:48 +0000 Subject: [PATCH] el/dot-emacs.el (mdw-fontify-rust): Spell the `crate' keyword correctly. Organization: Straylight/Edgeware From: Mark Wooding --- el/dot-emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index f797b17..f156ee8 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -2657,7 +2657,7 @@ (defun mdw-fontify-rust () (let ((rust-keywords (mdw-regexps "abstract" "alignof" "as" "become" "box" "break" - "const" "continue" "create" + "const" "continue" "crate" "do" "else" "enum" "extern" "final" "fn" "for" -- [mdw]