* emacs-lisp/benchmark.el (benchmark): Reflow docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 17 Mar 2009 10:32:20 +0000 (10:32 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 17 Mar 2009 10:32:20 +0000 (10:32 +0000)
lisp/ChangeLog
lisp/emacs-lisp/benchmark.el

index f42b5d5..141ead4 100644 (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>
index ec16973..ce7b1eb 100644 (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))))