summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/lisp-mode.el
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2017-05-11 18:12:40 -0400
committerNoam Postavsky <npostavs@gmail.com>2017-05-15 22:58:17 -0400
commit750f0e2e79e1bdc3246b07aa3219cab34ebde6e7 (patch)
tree9dbb72248eb3843359cc1ad6d475d53112ddf3c2 /lisp/emacs-lisp/lisp-mode.el
parent24d06313c4f205061fb74c9665d5819a05362636 (diff)
downloademacs-750f0e2e79e1bdc3246b07aa3219cab34ebde6e7.tar.gz
emacs-750f0e2e79e1bdc3246b07aa3219cab34ebde6e7.tar.bz2
emacs-750f0e2e79e1bdc3246b07aa3219cab34ebde6e7.zip
Make sure indent-sexp stops at end of sexp (Bug#26878)
* lisp/emacs-lisp/lisp-mode.el (indent-sexp): Check endpos before indenting. * test/lisp/emacs-lisp/lisp-mode-tests.el (indent-sexp-stop): New test.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el33
1 files changed, 18 insertions, 15 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 6287f27b139..3334471d251 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -1184,21 +1184,24 @@ ENDPOS is encountered."
;; after point.
(save-excursion (forward-sexp 1) (point)))))
(save-excursion
- (while (< (point) endpos)
- (let ((indent (lisp-indent-calc-next parse-state)))
- ;; If the line contains a comment indent it now with
- ;; `indent-for-comment'.
- (when (nth 4 (lisp-indent-state-ppss parse-state))
- (save-excursion
- (goto-char (lisp-indent-state-ppss-point parse-state))
- (indent-for-comment)
- (setf (lisp-indent-state-ppss-point parse-state)
- (line-end-position))))
- ;; But not if the line is blank, or just a comment (we
- ;; already called `indent-for-comment' above).
- (skip-chars-forward " \t")
- (unless (or (eolp) (eq (char-syntax (char-after)) ?<) (not indent))
- (indent-line-to indent)))))
+ (while (let ((indent (lisp-indent-calc-next parse-state))
+ (ppss (lisp-indent-state-ppss parse-state)))
+ ;; If the line contains a comment indent it now with
+ ;; `indent-for-comment'.
+ (when (and (nth 4 ppss) (<= (nth 8 ppss) endpos))
+ (save-excursion
+ (goto-char (lisp-indent-state-ppss-point parse-state))
+ (indent-for-comment)
+ (setf (lisp-indent-state-ppss-point parse-state)
+ (line-end-position))))
+ (when (< (point) endpos)
+ ;; Indent the next line, unless it's blank, or just a
+ ;; comment (we will `indent-for-comment' the latter).
+ (skip-chars-forward " \t")
+ (unless (or (eolp) (not indent)
+ (eq (char-syntax (char-after)) ?<))
+ (indent-line-to indent))
+ t))))
(move-marker endpos nil)))
(defun indent-pp-sexp (&optional arg)