diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 5842be7cf64..0d314d669eb 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -1067,9 +1067,7 @@ indentation levels from right to left." | |||
| 1067 | (interactive "*") | 1067 | (interactive "*") |
| 1068 | (when (and (not (bolp)) | 1068 | (when (and (not (bolp)) |
| 1069 | (not (python-syntax-comment-or-string-p)) | 1069 | (not (python-syntax-comment-or-string-p)) |
| 1070 | (= (+ (line-beginning-position) | 1070 | (= (current-indentation) (current-column))) |
| 1071 | (current-indentation)) | ||
| 1072 | (point))) | ||
| 1073 | (python-indent-line t) | 1071 | (python-indent-line t) |
| 1074 | t)) | 1072 | t)) |
| 1075 | 1073 | ||