From: Mark Wooding Date: Thu, 27 Jul 2017 10:00:35 +0000 (+0100) Subject: el/dot-emacs.el: Add missing Pyrex keywords `enum' and `property'. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/a63efb6728ba8d0fd07a24235755c1345a9b897c el/dot-emacs.el: Add missing Pyrex keywords `enum' and `property'. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 7f43d41..e290e5a 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -2634,10 +2634,10 @@ (defun mdw-fontify-python () (defun mdw-fontify-pyrex () (mdw-fontify-pythonic (mdw-regexps "and" "as" "assert" "break" "cdef" "class" "continue" - "ctypedef" "def" "del" "elif" "else" "except" "exec" + "ctypedef" "def" "del" "elif" "else" "enum" "except" "exec" "extern" "finally" "for" "from" "global" "if" "import" "in" "is" "lambda" "not" "or" "pass" "print" - "raise" "return" "struct" "try" "while" "with" + "property" "raise" "return" "struct" "try" "while" "with" "yield"))) ;;;--------------------------------------------------------------------------