From 4b63c21f08679c423200132646d48ffb5f97247a Mon Sep 17 00:00:00 2001 From: Evan Moses Date: Thu, 21 Feb 2019 13:37:01 -0800 Subject: [PATCH] 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 --- lisp/progmodes/python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.2