Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
049638ad
Commit
049638ad
authored
Dec 19, 2013
by
Glenn Morris
Browse files
* lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup.
Fixes: debbugs:16121
parent
570c054a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/ert.el
lisp/emacs-lisp/ert.el
+2
-1
No files found.
lisp/ChangeLog
View file @
049638ad
2013-12-19 Glenn Morris <rgm@gnu.org>
* emacs-lisp/ert.el (ert-select-tests):
Fix string/symbol mixup. (Bug#16121)
2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
...
...
lisp/emacs-lisp/ert.el
View file @
049638ad
...
...
@@ -999,7 +999,8 @@ contained in UNIVERSE."
(list (cl-remove-if-not (lambda (test)
(and (ert-test-name test)
(string-match selector
(ert-test-name test))))
(symbol-name
(ert-test-name test)))))
universe))))
(ert-test (list selector))
(symbol
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment