chiark / gitweb /
el/dot-emacs.el: Add missing Pyrex keywords `enum' and `property'.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 27 Jul 2017 10:00:35 +0000 (11:00 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 27 Jul 2017 10:03:55 +0000 (11:03 +0100)
el/dot-emacs.el

index 7f43d41de4792bb184acf525ff6aee11bf02e970..e290e5ad4b46aa94d77405c2db1350fff752bf1c 100644 (file)
@@ -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")))
 
 ;;;--------------------------------------------------------------------------