From: Jorgen Schaefer Date: Thu, 21 Apr 2016 08:00:39 +0000 (+0200) Subject: Add Python 3.5 keyword "await" X-Git-Tag: emacs-25.0.94~142 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=40bfebec83b7571b4ee5e3140e2b5a99105325bd;p=emacs.git Add Python 3.5 keyword "await" * lisp/progmodes/python.el (python-font-lock-keywords): Add await as keyword. --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 9c23655b911..2d22bb2ce88 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -524,6 +524,7 @@ The type returned can be `comment', `string' or `paren'." "nonlocal" ;; Python 3.5+ PEP492 (and "async" (+ space) (or "def" "for" "with")) + "await" ;; Extra: "self") symbol-end)