From: Evan Moses Date: Thu, 21 Feb 2019 21:37:01 +0000 (-0800) Subject: Add 'breakpoint' to builtins for Python X-Git-Tag: emacs-27.0.90~3518 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4b63c21f08679c423200132646d48ffb5f97247a;p=emacs.git Add 'breakpoint' to builtins for Python * lisp/progmodes/python.el (python-font-lock-keywords-level-2) (python-font-lock-keywords-maxiumum-decoration): Add 'breakpoint' to the list of builtins, it's new as of Python 3.7. Copyright-paperwork-exempt: yes --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 71b2a94c071..65d5d90cd5f 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -575,7 +575,7 @@ class declarations.") "reload" "unichr" "unicode" "xrange" "apply" "buffer" "coerce" "intern" ;; Python 3: - "ascii" "bytearray" "bytes" "exec" + "ascii" "breakpoint" "bytearray" "bytes" "exec" ;; Extra: "__all__" "__doc__" "__name__" "__package__") symbol-end) . font-lock-builtin-face))