From: Mark Wooding Date: Sun, 23 Apr 2023 22:38:51 +0000 (+0100) Subject: el/dot-emacs.el: Don't highlight Rust doc comments specially. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/77ccc2aa6978eaab7c925f30ad6b1a1abcdb747b el/dot-emacs.el: Don't highlight Rust doc comments specially. It's just bletcherous. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 087c211..dd52be1 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -3190,7 +3190,8 @@ name, as a symbol." ;; And anything else is punctuation. (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)" - '(0 mdw-punct-face))))) + '(0 mdw-punct-face))) + font-lock-syntactic-face-function . nil)) ;; Hack key bindings. (local-set-key [?{] 'mdw-self-insert-and-indent)