diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-03-17 10:32:20 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-03-17 10:32:20 +0000 |
commit | e597afcb8ba631d19988f77c7f3d9cd46444b542 (patch) | |
tree | bce50644a3234e7bcdb6447fccf10d77d581969a /lisp/emacs-lisp | |
parent | 6fe45af317c269694eb55f2dd1e292d9015b33d3 (diff) | |
download | emacs-e597afcb8ba631d19988f77c7f3d9cd46444b542.tar.gz emacs-e597afcb8ba631d19988f77c7f3d9cd46444b542.tar.bz2 emacs-e597afcb8ba631d19988f77c7f3d9cd46444b542.zip |
* emacs-lisp/benchmark.el (benchmark): Reflow docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/benchmark.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/benchmark.el b/lisp/emacs-lisp/benchmark.el index ec16973eadf..ce7b1ebc39e 100644 --- a/lisp/emacs-lisp/benchmark.el +++ b/lisp/emacs-lisp/benchmark.el @@ -104,8 +104,8 @@ result. The overhead of the `lambda's is accounted for." ;;;###autoload (defun benchmark (repetitions form) "Print the time taken for REPETITIONS executions of FORM. -Interactively, REPETITIONS is taken from the prefix arg. For -non-interactive use see also `benchmark-run' and +Interactively, REPETITIONS is taken from the prefix arg. +For non-interactive use see also `benchmark-run' and `benchmark-run-compiled'." (interactive "p\nxForm: ") (let ((result (eval `(benchmark-run ,repetitions ,form)))) |