Function: move-past-close-and-reindent
move-past-close-and-reindent is an interactive and byte-compiled
function defined in lisp.el.gz.
Signature
(move-past-close-and-reindent)
Documentation
Move past next ), delete indentation before it, then indent after it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp.el.gz
(defun move-past-close-and-reindent ()
"Move past next `)', delete indentation before it, then indent after it."
(interactive)
(up-list 1)
(forward-char -1)
(while (save-excursion ; this is my contribution
(let ((before-paren (point)))
(back-to-indentation)
(and (= (point) before-paren)
(progn
;; Move to end of previous line.
(beginning-of-line)
(forward-char -1)
;; Verify it doesn't end within a string or comment.
(let ((end (point))
state)
(beginning-of-line)
;; Get state at start of line.
(setq state (list 0 nil nil
(null (calculate-lisp-indent))
nil nil nil nil
nil))
;; Parse state across the line to get state at end.
(setq state (parse-partial-sexp (point) end nil nil
state))
;; Check not in string or comment.
(and (not (elt state 3)) (not (elt state 4))))))))
(delete-indentation))
(forward-char 1)
(newline-and-indent))