diff options
| author | Stefan Kangas | 2019-07-10 03:45:15 +0200 |
|---|---|---|
| committer | Basil L. Contovounesios | 2019-07-10 11:26:18 +0100 |
| commit | c198ecda9f51c3bc35d9709d0dc2c4b87ec4ee6e (patch) | |
| tree | 94117e84ad4927428ccd02e163134d7c528e88e1 | |
| parent | faedbe46654e10c92c30e9f4ea847e682668b249 (diff) | |
| download | emacs-c198ecda9f51c3bc35d9709d0dc2c4b87ec4ee6e.tar.gz emacs-c198ecda9f51c3bc35d9709d0dc2c4b87ec4ee6e.zip | |
Fix warnings in todo-mode-tests.el (Bug#36569)
* test/lisp/calendar/todo-mode-tests.el (todo-test--insert-item):
Fix "Unused lexical argument" warnings.
| -rw-r--r-- | test/lisp/calendar/todo-mode-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/calendar/todo-mode-tests.el b/test/lisp/calendar/todo-mode-tests.el index 7d4f7a77683..7d9425e2f58 100644 --- a/test/lisp/calendar/todo-mode-tests.el +++ b/test/lisp/calendar/todo-mode-tests.el | |||
| @@ -572,7 +572,7 @@ for todo-insert-item for use in automatic testing." | |||
| 572 | (lambda (_prompt) item)) | 572 | (lambda (_prompt) item)) |
| 573 | ((symbol-function 'read-number) ; For todo-set-item-priority | 573 | ((symbol-function 'read-number) ; For todo-set-item-priority |
| 574 | (lambda (_prompt &optional _default) (or priority 1)))) | 574 | (lambda (_prompt &optional _default) (or priority 1)))) |
| 575 | (todo-insert-item--basic))) | 575 | (todo-insert-item--basic nil diary-type date-type time where))) |
| 576 | 576 | ||
| 577 | (ert-deftest todo-test-toggle-item-header07 () ; bug#27609 | 577 | (ert-deftest todo-test-toggle-item-header07 () ; bug#27609 |
| 578 | "Test display of hidden item header under todo-insert-item." | 578 | "Test display of hidden item header under todo-insert-item." |