auto merge of #18793 : swgillespie/rust/master, r=alexcrichton

I noticed today that `move` wasn't getting highlighted in my editor of choice (emacs), so I went ahead and added it as a keyword in the emacs, vim, and kate editor files. Apparently it has already been done for gedit.
This commit is contained in:
bors 2014-11-11 18:26:56 +00:00
commit 351f7afd06
2 changed files with 2 additions and 1 deletions

View File

@ -176,7 +176,7 @@
"false" "fn" "for"
"if" "impl" "in"
"let" "loop"
"match" "mod" "mut"
"match" "mod" "move" "mut"
"priv" "proc" "pub"
"ref" "return"
"self" "static" "struct" "super"

View File

@ -34,6 +34,7 @@
<item> loop </item>
<item> match </item>
<item> mod </item>
<item> move </item>
<item> mut </item>
<item> priv </item>
<item> pub </item>