diff options
| -rw-r--r-- | lisp/progmodes/python.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 94297d4ea5b..c1368364a97 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -678,7 +678,7 @@ sign in chained assignment." | |||
| 678 | ;; and variants thereof | 678 | ;; and variants thereof |
| 679 | ;; the cases | 679 | ;; the cases |
| 680 | ;; (a) = 5 | 680 | ;; (a) = 5 |
| 681 | ;; [a] = 5 | 681 | ;; [a] = 5, |
| 682 | ;; [*a] = 5, 6 | 682 | ;; [*a] = 5, 6 |
| 683 | ;; are handled separately below | 683 | ;; are handled separately below |
| 684 | (,(python-font-lock-assignment-matcher | 684 | (,(python-font-lock-assignment-matcher |
| @@ -708,7 +708,7 @@ sign in chained assignment." | |||
| 708 | (1 font-lock-variable-name-face)) | 708 | (1 font-lock-variable-name-face)) |
| 709 | ;; special cases | 709 | ;; special cases |
| 710 | ;; (a) = 5 | 710 | ;; (a) = 5 |
| 711 | ;; [a] = 5 | 711 | ;; [a] = 5, |
| 712 | ;; [*a] = 5, 6 | 712 | ;; [*a] = 5, 6 |
| 713 | (,(python-font-lock-assignment-matcher | 713 | (,(python-font-lock-assignment-matcher |
| 714 | (python-rx (or line-start ?\; ?=) (* space) | 714 | (python-rx (or line-start ?\; ?=) (* space) |