Function: smie--next-indent-change

smie--next-indent-change is an interactive and byte-compiled function defined in smie.el.gz.

Signature

(smie--next-indent-change)

Documentation

Go to the next line that needs to be reindented (and reindent it).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/smie.el.gz
(defun smie--next-indent-change ()
  "Go to the next line that needs to be reindented (and reindent it)."
  (interactive)
  (while
      (let ((tick (buffer-chars-modified-tick)))
        (indent-according-to-mode)
        (eq tick (buffer-chars-modified-tick)))
    (forward-line 1)))