aboutsummaryrefslogtreecommitdiffstats
path: root/test/src/lread-tests.el
diff options
context:
space:
mode:
authorGlenn Morris2018-04-20 08:07:43 -0700
committerGlenn Morris2018-04-20 08:07:43 -0700
commit2a8f8f75639505b0f04757a1034480843fbd8398 (patch)
treed17b3a2c7ea7c51aecb9de9466b9505378dacafb /test/src/lread-tests.el
parente927a36f3cf974a57094d10023ee075bb4596fb9 (diff)
parent5de608f3edb54b4f8d9774e159d0fa99484d3ac8 (diff)
downloademacs-2a8f8f75639505b0f04757a1034480843fbd8398.tar.gz
emacs-2a8f8f75639505b0f04757a1034480843fbd8398.zip
Merge from origin/emacs-26
5de608f (origin/emacs-26) Update the documentation of 'perform-replace' 06245b6 * etc/NEWS: Another fix for the last change (noted by Juri Li... 8f6293c Fix use of @key in Texinfo manuals f4c9894 Improve documentation of actual arglist ce0e253 ; * etc/NEWS: Improve last change as proposed by Phil Sainty b89ff0e Don't assume term-current-row cache is valid (Bug#31193) 326a296 ; * etc/NEWS: Mention 'display-buffer-in-major-side-window' c... 3bdc9a1 Fix flyspell-auto-correct-previous-word broken by recent change a539eb5 * test/src/lread-tests.el (lread-test-bug-31186): New test. 3fa472b Fix undefined behaviour while looking for lexical-binding fil... 4341aac Minor wording improvement in "Bookmarks" Conflicts: test/src/lread-tests.el
Diffstat (limited to 'test/src/lread-tests.el')
-rw-r--r--test/src/lread-tests.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/src/lread-tests.el b/test/src/lread-tests.el
index 708701a8887..647e886d342 100644
--- a/test/src/lread-tests.el
+++ b/test/src/lread-tests.el
@@ -199,4 +199,12 @@ literals (Bug#20852)."
199 (read "#xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff") 199 (read "#xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")
200 :type 'overflow-error)) 200 :type 'overflow-error))
201 201
202(ert-deftest lread-test-bug-31186 ()
203 (with-temp-buffer
204 (insert ";; -*- -:*-")
205 (should-not
206 ;; This used to crash in lisp_file_lexically_bound_p before the
207 ;; bug was fixed.
208 (eval-buffer))))
209
202;;; lread-tests.el ends here 210;;; lread-tests.el ends here