#(py-electric-colon): updated comment

This commit is contained in:
Barry Warsaw 1995-03-15 18:23:16 +00:00
parent a6a714eb3b
commit d865bc5984
1 changed files with 5 additions and 5 deletions

View File

@ -436,11 +436,11 @@ argument is provided, that many colons are inserted non-electrically."
(py-compute-indentation)))
)
(setq outdent py-indent-offset))
;; electric colon won't re-indent lines that start to the left
;; of the current computed indentation, under the assumption
;; that these are already outdented properly. Use TAB, C-c C-l
;; or C-c C-r to adjust. TBD: Is there a better way to
;; determine this???
;; Don't indent, only outdent. This assumes that any lines that
;; are already outdented relative to py-compute-indentation were
;; put there on purpose. Its highly annoying to have `:' indent
;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
;; there a better way to determine this???
(if (< (current-indentation) indent) nil
(goto-char here)
(beginning-of-line)