diff options
| author | kobarity | 2022-05-22 13:26:34 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-05-22 13:26:34 +0200 |
| commit | 2b63fabcd3a42ce336400909ca0fb09ec23a88ba (patch) | |
| tree | 5d96c68448ba3f5120237634f9b4930ab4e7a261 /lisp/progmodes/python.el | |
| parent | 959d041677205a370b21bc89503fa1d7e5a9bd6b (diff) | |
| download | emacs-2b63fabcd3a42ce336400909ca0fb09ec23a88ba.tar.gz emacs-2b63fabcd3a42ce336400909ca0fb09ec23a88ba.zip | |
Fix two typos in comments in python.el
* lisp/progmodes/python.el
(python-font-lock-keywords-maximum-decoration): Fix typos in
comments (bug#55557).
Diffstat (limited to 'lisp/progmodes/python.el')
| -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) |