aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/lisp-mode-tests.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/lisp-mode-tests.el b/test/lisp/emacs-lisp/lisp-mode-tests.el
index 63632449ca5..e4ba929ecbd 100644
--- a/test/lisp/emacs-lisp/lisp-mode-tests.el
+++ b/test/lisp/emacs-lisp/lisp-mode-tests.el
@@ -284,7 +284,11 @@ Expected initialization file: `%s'\"
284 (lisp-indent-line) 284 (lisp-indent-line)
285 (should (equal (buffer-string) "prompt> foo")))) 285 (should (equal (buffer-string) "prompt> foo"))))
286 286
287 287(ert-deftest lisp-indent-unfinished-string ()
288 "Don't infloop on unfinished string (Bug#37045)."
289 (with-temp-buffer
290 (insert "\"\n")
291 (lisp-indent-region (point-min) (point-max))))
288 292
289(provide 'lisp-mode-tests) 293(provide 'lisp-mode-tests)
290;;; lisp-mode-tests.el ends here 294;;; lisp-mode-tests.el ends here