Files
emacs/lisp/progmodes/python.el
Fabián Ezequiel Gallina cd1ed6c8f4 python-end-of-defun-function now works correctly when comments are not indented properly.
Calling `end-of-defun' on a python file will now do the correct thing,
even for cases like this:

    def fib(n):
        if n < 2:
    #       base cases
            return n
        else:
            return fib(n - 2) + fib(n - 1)
2012-05-17 00:03:36 -03:00

109 KiB