1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

; Fix more typos

This commit is contained in:
Stefan Kangas 2020-10-02 18:02:51 +02:00
parent ceae38b933
commit d6a2754348
18 changed files with 21 additions and 21 deletions

View file

@ -339,7 +339,7 @@ def func(arg):
# I don't do much
return arg
# This comment is badly indented because the user forced so.
# At this line python.el wont dedent, user is always right.
# At this line python.el won't dedent, user is always right.
comment_wins_over_ender = True
@ -358,7 +358,7 @@ comment_wins_over_ender = True
;; The return keyword do make indentation lose a level...
(should (= (python-indent-calculate-indentation) 0))
;; ...but the current indentation was forced by the user.
(python-tests-look-at "# At this line python.el wont dedent")
(python-tests-look-at "# At this line python.el won't dedent")
(should (eq (car (python-indent-context)) :after-comment))
(should (= (python-indent-calculate-indentation) 4))
;; Should behave the same for blank lines: potentially a comment.