From: Juanma Barranquero Date: Fri, 26 Oct 2007 13:48:49 +0000 (+0000) Subject: (Fread_minibuffer, Feval_minibuffer): Reflow docstrings. X-Git-Tag: emacs-pretest-23.0.90~10052 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e298936f89a49df91563ed0fb6c3d0a91689f08c;p=emacs.git (Fread_minibuffer, Feval_minibuffer): Reflow docstrings. --- diff --git a/src/ChangeLog b/src/ChangeLog index 7be84b99da7..d379c882245 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2007-10-26 Juanma Barranquero + * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings. + * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings) (Vdead, dont_register_blocks, staticvec, staticidx, interval_block) (n_interval_blocks, init_strings, check_string_bytes, check_sblock) diff --git a/src/minibuf.c b/src/minibuf.c index 377968fab4f..5cd821e5179 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1058,8 +1058,8 @@ DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0, doc: /* Return a Lisp object read using the minibuffer, unevaluated. Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS is a string to insert in the minibuffer before reading. -\(INITIAL-CONTENTS can also be a cons of a string and an integer. Such -arguments are used as in `read-from-minibuffer'.) */) +\(INITIAL-CONTENTS can also be a cons of a string and an integer. +Such arguments are used as in `read-from-minibuffer'.) */) (prompt, initial_contents) Lisp_Object prompt, initial_contents; { @@ -1073,8 +1073,8 @@ DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0, doc: /* Return value of Lisp expression read using the minibuffer. Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS is a string to insert in the minibuffer before reading. -\(INITIAL-CONTENTS can also be a cons of a string and an integer. Such -arguments are used as in `read-from-minibuffer'.) */) +\(INITIAL-CONTENTS can also be a cons of a string and an integer. +Such arguments are used as in `read-from-minibuffer'.) */) (prompt, initial_contents) Lisp_Object prompt, initial_contents; {