diff options
| author | Jake Goulding <jake.goulding@gmail.com> | 2017-09-14 13:18:18 -0400 |
|---|---|---|
| committer | Jake Goulding <jake.goulding@gmail.com> | 2017-09-14 13:18:18 -0400 |
| commit | 0e832ecc9a19086d85718e378febb633e38afe84 (patch) | |
| tree | 5d428dbb6f57805a7d7a4513a8955316e1bc7768 /rust-mode.el | |
| parent | c8280aea1d02ae84bff2a6f02f8dc7701309c8b6 (diff) | |
| download | rust-mode-0e832ecc9a19086d85718e378febb633e38afe84.tar.gz | |
Remove `float`, `int`, and `uint` as built-in types.
These went away pre Rust-1.0 and are valid identifiers. Went ahead and
removed them from the tests as well, replacing them with real types of
the same number of characters.
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el index ebc6ee9..d5f1391 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -547,7 +547,7 @@ buffer." "u128" "i128" "f32" "f64" - "float" "int" "uint" "isize" "usize" + "isize" "usize" "bool" "str" "char")) |
