diff options
| author | Juri Linkov | 2018-04-28 23:20:33 +0300 |
|---|---|---|
| committer | Juri Linkov | 2018-04-28 23:20:33 +0300 |
| commit | f4eeb0f5ae448db0f064f6305ab0bc0c3bae071a (patch) | |
| tree | 375951dfe30538df200f6650b9bf178aadd3c803 /test/src | |
| parent | 0b3bc05d15c32ffa134347896c9b9fcff89225ab (diff) | |
| download | emacs-f4eeb0f5ae448db0f064f6305ab0bc0c3bae071a.tar.gz emacs-f4eeb0f5ae448db0f064f6305ab0bc0c3bae071a.zip | |
* lisp/subr.el (dotimes): Deprecate RESULT field. (Bug#16206)
* doc/lispref/control.texi (Iteration):
* doc/misc/cl.texi (Iteration): Document deprecation of its use.
* doc/lispintro/emacs-lisp-intro.texi (dotimes):
* test/src/emacs-module-tests.el (multiply-string):
* test/lisp/filenotify-tests.el (file-notify-test07-many-events):
Place RESULT field after the form.
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/emacs-module-tests.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index 8b6328d35af..9ef5a47b159 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el | |||
| @@ -138,8 +138,9 @@ changes." | |||
| 138 | 138 | ||
| 139 | (defun multiply-string (s n) | 139 | (defun multiply-string (s n) |
| 140 | (let ((res "")) | 140 | (let ((res "")) |
| 141 | (dotimes (i n res) | 141 | (dotimes (i n) |
| 142 | (setq res (concat res s))))) | 142 | (setq res (concat res s))) |
| 143 | res)) | ||
| 143 | 144 | ||
| 144 | (ert-deftest mod-test-globref-make-test () | 145 | (ert-deftest mod-test-globref-make-test () |
| 145 | (let ((mod-str (mod-test-globref-make)) | 146 | (let ((mod-str (mod-test-globref-make)) |