* emacs-lisp/benchmark.el (benchmark): Reflow docstring.

This commit is contained in:
Juanma Barranquero 2009-03-17 10:32:20 +00:00
parent 6fe45af317
commit e597afcb8b
2 changed files with 11 additions and 7 deletions

View file

@ -1,16 +1,20 @@
2009-03-17 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/benchmark.el (benchmark): Reflow docstring.
2009-03-17 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
* international/characters.el (cjk-char-width-table): Add
cp932-2-byte.
* international/characters.el (cjk-char-width-table):
Add cp932-2-byte.
2009-03-17 Chong Yidong <cyd@stupidchicken.com>
* minibuffer.el (minibuffer-complete-and-exit): Doc fix.
2009-03-16 David Reitter <david.reitter@gmail.com>
2009-03-16 David Reitter <david.reitter@gmail.com>
* faces.el (set-face-attributes-from-resources,
face-set-after-frame-default): Do not import X resources on NS
* faces.el (set-face-attributes-from-resources)
(face-set-after-frame-default): Do not import X resources on NS
because NS does not have system-wide X resources.
2009-03-16 Richard M Stallman <rms@gnu.org>

View file

@ -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))))