branch: elpa/rust-mode
commit 4adb3a729653315ed3efcf3e89f20d940dfe0e2d
Merge: ae161dca23d ae9cbe81d7d
Author: Sibi Prabakaran <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #583 from Wilfred/patch-1
    
    Add syntax highlighting for f16 and f128 types
---
 rust-prog-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rust-prog-mode.el b/rust-prog-mode.el
index 62639499c59..f2f3f0bc3ef 100644
--- a/rust-prog-mode.el
+++ b/rust-prog-mode.el
@@ -204,7 +204,8 @@ See `prettify-symbols-compose-predicate'."
     "u64" "i64"
     "u128" "i128"
 
-    "f32" "f64"
+    "f16" "f32"
+    "f64" "f128"
     "isize" "usize"
     "bool"
     "str" "char"))

Reply via email to