diff options
| author | Evan Moses | 2019-02-21 13:37:01 -0800 |
|---|---|---|
| committer | Eli Zaretskii | 2019-03-01 11:51:35 +0200 |
| commit | 4b63c21f08679c423200132646d48ffb5f97247a (patch) | |
| tree | 37f1f5d5e39bf32aac14caf3f389a055581db440 /lisp/progmodes/python.el | |
| parent | 8eb94161b3419f3dd345871928ea37d986791963 (diff) | |
| download | emacs-4b63c21f08679c423200132646d48ffb5f97247a.tar.gz emacs-4b63c21f08679c423200132646d48ffb5f97247a.zip | |
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
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 575 | "reload" "unichr" "unicode" "xrange" "apply" "buffer" "coerce" | 575 | "reload" "unichr" "unicode" "xrange" "apply" "buffer" "coerce" |
| 576 | "intern" | 576 | "intern" |
| 577 | ;; Python 3: | 577 | ;; Python 3: |
| 578 | "ascii" "bytearray" "bytes" "exec" | 578 | "ascii" "breakpoint" "bytearray" "bytes" "exec" |
| 579 | ;; Extra: | 579 | ;; Extra: |
| 580 | "__all__" "__doc__" "__name__" "__package__") | 580 | "__all__" "__doc__" "__name__" "__package__") |
| 581 | symbol-end) . font-lock-builtin-face)) | 581 | symbol-end) . font-lock-builtin-face)) |