diff options
| -rw-r--r-- | lisp/emacs-lisp/ert.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el index fe6eb19451b..c90c06d0849 100644 --- a/lisp/emacs-lisp/ert.el +++ b/lisp/emacs-lisp/ert.el | |||
| @@ -2092,7 +2092,9 @@ and how to display message." | |||
| 2092 | ;;; Commands and button actions for the results buffer. | 2092 | ;;; Commands and button actions for the results buffer. |
| 2093 | 2093 | ||
| 2094 | (define-derived-mode ert-results-mode special-mode "ERT-Results" | 2094 | (define-derived-mode ert-results-mode special-mode "ERT-Results" |
| 2095 | "Major mode for viewing results of ERT test runs.") | 2095 | "Major mode for viewing results of ERT test runs." |
| 2096 | (setq-local revert-buffer-function | ||
| 2097 | (lambda (&rest _) (ert-results-rerun-all-tests)))) | ||
| 2096 | 2098 | ||
| 2097 | (cl-loop for (key binding) in | 2099 | (cl-loop for (key binding) in |
| 2098 | '( ;; Stuff that's not in the menu. | 2100 | '( ;; Stuff that's not in the menu. |