From: Noam Postavsky Date: Wed, 22 Mar 2017 00:40:52 +0000 (-0400) Subject: * test/lisp/emacs-lisp/lisp-mode-tests.el (indent-subsexp): Test for Bug#26187 X-Git-Tag: emacs-26.0.90~522^2~57 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b60d7657a2d9e5f9a233032643b0f3ce55420ee;p=emacs.git * test/lisp/emacs-lisp/lisp-mode-tests.el (indent-subsexp): Test for Bug#26187 --- diff --git a/test/lisp/emacs-lisp/lisp-mode-tests.el b/test/lisp/emacs-lisp/lisp-mode-tests.el index 2801f23df63..8e3f2e185cf 100644 --- a/test/lisp/emacs-lisp/lisp-mode-tests.el +++ b/test/lisp/emacs-lisp/lisp-mode-tests.el @@ -77,6 +77,10 @@ noindent\" 3 (search-backward "d2") (up-list -1) (indent-sexp) + (should (equal (buffer-string) correct)) + (backward-sexp) + (end-of-line) + (indent-sexp) (should (equal (buffer-string) correct))))) (ert-deftest indent-sexp-in-string ()