diff options
| author | Andrea Corallo | 2020-05-24 10:20:23 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-05-24 10:20:23 +0100 |
| commit | 9daffe9cfe82d3b1e1e9fa8929dbb40cfed60f0f (patch) | |
| tree | c9e78cbb4e151dc3c3996a65cf1eedab19248fb4 /test/src | |
| parent | f5dceed09a8234548d5b3acb76d443569533cab9 (diff) | |
| parent | e021c2dc2279e0fd3a5331f9ea661e4d39c2e840 (diff) | |
| download | emacs-9daffe9cfe82d3b1e1e9fa8929dbb40cfed60f0f.tar.gz emacs-9daffe9cfe82d3b1e1e9fa8929dbb40cfed60f0f.zip | |
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/buffer-tests.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/buffer-tests.el b/test/src/buffer-tests.el index 6e87cb94897..6e9764625a9 100644 --- a/test/src/buffer-tests.el +++ b/test/src/buffer-tests.el | |||
| @@ -1327,4 +1327,10 @@ with parameters from the *Messages* buffer modification." | |||
| 1327 | (set-buffer-multibyte t) | 1327 | (set-buffer-multibyte t) |
| 1328 | (buffer-string))))))) | 1328 | (buffer-string))))))) |
| 1329 | 1329 | ||
| 1330 | ;; https://debbugs.gnu.org/33492 | ||
| 1331 | (ert-deftest buffer-tests-buffer-local-variables-undo () | ||
| 1332 | "Test that `buffer-undo-list' appears in `buffer-local-variables'." | ||
| 1333 | (with-temp-buffer | ||
| 1334 | (should (assq 'buffer-undo-list (buffer-local-variables))))) | ||
| 1335 | |||
| 1330 | ;;; buffer-tests.el ends here | 1336 | ;;; buffer-tests.el ends here |