diff options
| author | Glenn Morris | 2013-07-11 09:13:38 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-07-11 09:13:38 -0700 |
| commit | a19b3c2d975c605c3ed76f1c178cdec7c3c7bdcf (patch) | |
| tree | cd87d97c915194a3e615fac8445c90b7419876b0 /lisp/ChangeLog | |
| parent | 17bd3d0493fa7d0ecfa60a646141abebfc8290eb (diff) | |
| download | emacs-a19b3c2d975c605c3ed76f1c178cdec7c3c7bdcf.tar.gz emacs-a19b3c2d975c605c3ed76f1c178cdec7c3c7bdcf.zip | |
Stop reimplementing a bunch of cl- functions in ert
* lisp/emacs-lisp/ert.el: Require cl-lib at runtime too.
(ert--cl-do-remf, ert--remprop, ert--remove-if-not)
(ert--intersection, ert--set-difference, ert--set-difference-eq)
(ert--union, ert--gensym-counter, ert--gensym-counter)
(ert--coerce-to-vector, ert--remove*, ert--string-position)
(ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
(ert-make-test-unbound, ert--expand-should-1)
(ert--expand-should, ert--should-error-handle-error)
(should-error, ert--explain-equal-rec)
(ert--plist-difference-explanation, ert-select-tests)
(ert--make-stats, ert--remove-from-list, ert--string-first-line):
Use cl-lib functions rather than reimplementations.
* test/automated/ert-tests.el: Require cl-lib at runtime too.
(ert-test-special-operator-p): Use cl-gensym rather than ert-- version.
(ert-test-remprop, ert-test-remove-if-not, ert-test-remove*)
(ert-test-set-functions, ert-test-gensym)
(ert-test-coerce-to-vector, ert-test-string-position)
(ert-test-mismatch): Remove tests.
* test/automated/cl-lib.el: New, split from ert-tests.el.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 29f053c5ae1..7f5fd1efb23 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,18 @@ | |||
| 1 | 2013-07-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/ert.el: Require cl-lib at runtime too. | ||
| 4 | (ert--cl-do-remf, ert--remprop, ert--remove-if-not) | ||
| 5 | (ert--intersection, ert--set-difference, ert--set-difference-eq) | ||
| 6 | (ert--union, ert--gensym-counter, ert--gensym-counter) | ||
| 7 | (ert--coerce-to-vector, ert--remove*, ert--string-position) | ||
| 8 | (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs. | ||
| 9 | (ert-make-test-unbound, ert--expand-should-1) | ||
| 10 | (ert--expand-should, ert--should-error-handle-error) | ||
| 11 | (should-error, ert--explain-equal-rec) | ||
| 12 | (ert--plist-difference-explanation, ert-select-tests) | ||
| 13 | (ert--make-stats, ert--remove-from-list, ert--string-first-line): | ||
| 14 | Use cl-lib functions rather than reimplementations. | ||
| 15 | |||
| 1 | 2013-07-11 Michael Albinus <michael.albinus@gmx.de> | 16 | 2013-07-11 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 17 | ||
| 3 | * net/tramp.el (tramp-methods): Extend docstring. | 18 | * net/tramp.el (tramp-methods): Extend docstring. |