Function: python-indent-dedent-line

python-indent-dedent-line is an interactive and byte-compiled function defined in python.el.gz.

Signature

(python-indent-dedent-line)

Documentation

De-indent current line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-indent-dedent-line ()
  "De-indent current line."
  (interactive "*")
  (when (and (not (bolp))
           (not (python-syntax-comment-or-string-p))
           (= (current-indentation) (current-column)))
      (python-indent-line t)
      t))