From: Mark Wooding Date: Thu, 14 Feb 2019 13:09:05 +0000 (+0000) Subject: el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/63b40831b80c784c50bafbdef00a5cd07ddb91fd?hp=260564a3e47fc87a9194b8f2241ab8dd04f0116f el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax. You're not allowed to write `is' or `us' as suffixes. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index f156ee8..7c933f3 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -2702,7 +2702,7 @@ name, as a symbol." "\\|" "0o[0-7_]+" "\\|" "0b[01_]+" "\\)" - "\\([ui]\\(8\\|16\\|32\\|64\\|s\\|size\\)\\)?" + "\\([ui]\\(8\\|16\\|32\\|64\\|size\\)\\)?" "\\)\\_>") '(0 mdw-number-face))