diff options
author | Stephen Berman <stephen.berman@gmx.net> | 2022-07-27 11:37:31 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-27 11:37:31 +0200 |
commit | dc84264f3cb2ea9ab5b0af9f3529ebddb6bc0219 (patch) | |
tree | 8ed2f8f30f403aa7631945bda5817a26cb04d9b5 /lisp/progmodes | |
parent | 27b5ab80ec2785ed0e178f695ec3a5f5fabdbea2 (diff) | |
download | emacs-dc84264f3cb2ea9ab5b0af9f3529ebddb6bc0219.tar.gz emacs-dc84264f3cb2ea9ab5b0af9f3529ebddb6bc0219.tar.bz2 emacs-dc84264f3cb2ea9ab5b0af9f3529ebddb6bc0219.zip |
Fix comment/else indentation problem in python-mode
* lisp/progmodes/python.el
(python-info-dedenter-opening-block-positions): Fix indentation of
"else" after a comment (bug#56742).
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/python.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index ec7d6572200..b8fc7d4c546 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -5171,7 +5171,8 @@ likely an invalid python file." (while (and (< (point) cur-line) (setq no-back-indent (or (> (current-indentation) indentation) - (python-info-current-line-empty-p)))) + (python-info-current-line-empty-p) + (python-info-current-line-comment-p)))) (forward-line))) no-back-indent))) (setq collected-indentations |