diff options
| author | Eivind Fonn <evfonn@gmail.com> | 2019-11-22 08:58:43 +0100 |
|---|---|---|
| committer | Eivind Fonn <evfonn@gmail.com> | 2019-11-23 09:42:19 +0100 |
| commit | 53bfec936d1838a103adaa362223fc2d04ba159c (patch) | |
| tree | ea58d65cd9d87dd4007d22a42a3d12e289f01f23 /evil-tests.el | |
| parent | 12bee185bb7b1a6012e2ae424f60055ad9eedf56 (diff) | |
Fix erroneously short-parsing Emacs commands
Fixes #1202
Diffstat (limited to 'evil-tests.el')
| -rw-r--r-- | evil-tests.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/evil-tests.el b/evil-tests.el index b7c4f84..cf455bd 100644 --- a/evil-tests.el +++ b/evil-tests.el @@ -6646,7 +6646,9 @@ if no previous selection") (should (equal (evil-ex-parse "yas/reload-all") '(evil-ex-call-command nil "yas/reload-all" nil))) (should (equal (evil-ex-parse "mu4e") - '(evil-ex-call-command nil "mu4e" nil)))) + '(evil-ex-call-command nil "mu4e" nil))) + (should (equal (evil-ex-parse "make-frame") + '(evil-ex-call-command nil "make-frame" nil)))) (ert-deftest evil-text-ex-search-offset () "Test for addresses like /base//pattern/" |
