Files
emacs/lisp/progmodes
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
..
2012-04-27 17:49:31 +00:00
2012-05-04 22:50:20 -04:00
2012-04-27 11:10:38 +08:00
2012-04-20 16:48:50 +08:00
2012-05-04 13:14:14 +08:00
2012-05-04 22:50:20 -04:00