diff options
author | Noam Postavsky <npostavs@gmail.com> | 2017-03-21 20:40:52 -0400 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2017-03-21 20:45:32 -0400 |
commit | 0b60d7657a2d9e5f9a233032643b0f3ce55420ee (patch) | |
tree | 5c9639ab40dfc8a90d3edd9bf090ae9d1861d235 /test/lisp/emacs-lisp/lisp-mode-tests.el | |
parent | bcb6c7b7cd954fc653fe54c20aa4a5d8dd97d76d (diff) | |
download | emacs-0b60d7657a2d9e5f9a233032643b0f3ce55420ee.tar.gz |
* test/lisp/emacs-lisp/lisp-mode-tests.el (indent-subsexp): Test for Bug#26187
Diffstat (limited to 'test/lisp/emacs-lisp/lisp-mode-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/lisp-mode-tests.el | 4 |
1 files changed, 4 insertions, 0 deletions
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 () |