diff options
| author | Eli Zaretskii | 2021-07-22 12:14:50 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-07-22 12:14:50 +0300 |
| commit | c8a1af6d3726ee57392dbea40ecca51c793224c4 (patch) | |
| tree | f6ff0abcd0a10b3a5fa6a8248bfce1cffd9ef011 /test/src | |
| parent | 3edc4fb5d8931f49ec939c97107c393d554edf90 (diff) | |
| download | emacs-c8a1af6d3726ee57392dbea40ecca51c793224c4.tar.gz emacs-c8a1af6d3726ee57392dbea40ecca51c793224c4.zip | |
Avoid byte-compilation warning
* test/src/buffer-tests.el (buffer-tests-inhibit-buffer-hooks):
Avoid byte-compiler warning. (Bug#49667)
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/buffer-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/buffer-tests.el b/test/src/buffer-tests.el index 20f85c6c93e..11f842e8fe0 100644 --- a/test/src/buffer-tests.el +++ b/test/src/buffer-tests.el | |||
| @@ -1345,8 +1345,8 @@ with parameters from the *Messages* buffer modification." | |||
| 1345 | (add-hook 'kill-buffer-hook kbh nil t) | 1345 | (add-hook 'kill-buffer-hook kbh nil t) |
| 1346 | (add-hook 'kill-buffer-query-functions kbqf nil t) | 1346 | (add-hook 'kill-buffer-query-functions kbqf nil t) |
| 1347 | (kill-buffer)) | 1347 | (kill-buffer)) |
| 1348 | (with-temp-buffer) | 1348 | (with-temp-buffer (ignore)) |
| 1349 | (with-output-to-string) | 1349 | (with-output-to-string (ignore)) |
| 1350 | (should-not run-bluh) | 1350 | (should-not run-bluh) |
| 1351 | (should-not run-kbh) | 1351 | (should-not run-kbh) |
| 1352 | (should-not run-kbqf) | 1352 | (should-not run-kbqf) |