diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-03-10 04:34:53 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-03-10 04:34:53 +0100 |
commit | 4cb52200cb67d3cd1aa77717d12d4b88845e1755 (patch) | |
tree | c67f1399414e10fdefd3dd639910716dad6b004c /lisp/emacs-lisp/ert.el | |
parent | dc2688acb30afe747e874a0737cdfc07bd1efa3b (diff) | |
download | emacs-4cb52200cb67d3cd1aa77717d12d4b88845e1755.tar.gz emacs-4cb52200cb67d3cd1aa77717d12d4b88845e1755.tar.bz2 emacs-4cb52200cb67d3cd1aa77717d12d4b88845e1755.zip |
Fix duplicate ":" in ert-find-test-other-window prompt
* lisp/emacs-lisp/ert.el (ert-find-test-other-window): Don't insert
duplicate ":" in prompt.
Diffstat (limited to 'lisp/emacs-lisp/ert.el')
-rw-r--r-- | lisp/emacs-lisp/ert.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el index f7f53eaa700..e91ec0af443 100644 --- a/lisp/emacs-lisp/ert.el +++ b/lisp/emacs-lisp/ert.el @@ -1633,7 +1633,7 @@ default (if any)." (defun ert-find-test-other-window (test-name) "Find, in another window, the definition of TEST-NAME." - (interactive (list (ert-read-test-name-at-point "Find test definition: "))) + (interactive (list (ert-read-test-name-at-point "Find test definition"))) (find-function-do-it test-name 'ert--test 'switch-to-buffer-other-window)) (defun ert-delete-test (test-name) |