diff options
| author | Juanma Barranquero | 2007-10-26 13:48:49 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-26 13:48:49 +0000 |
| commit | e298936f89a49df91563ed0fb6c3d0a91689f08c (patch) | |
| tree | ac2273a10c51a572da0a7931ba175d1811a7f30e /src | |
| parent | d3d472627a5a3fe91b20912b1fa633c61ea6e5a5 (diff) | |
| download | emacs-e298936f89a49df91563ed0fb6c3d0a91689f08c.tar.gz emacs-e298936f89a49df91563ed0fb6c3d0a91689f08c.zip | |
(Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/minibuf.c | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7be84b99da7..d379c882245 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2007-10-26 Juanma Barranquero <lekktu@gmail.com> | 1 | 2007-10-26 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings. | ||
| 4 | |||
| 3 | * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings) | 5 | * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings) |
| 4 | (Vdead, dont_register_blocks, staticvec, staticidx, interval_block) | 6 | (Vdead, dont_register_blocks, staticvec, staticidx, interval_block) |
| 5 | (n_interval_blocks, init_strings, check_string_bytes, check_sblock) | 7 | (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, | |||
| 1058 | doc: /* Return a Lisp object read using the minibuffer, unevaluated. | 1058 | doc: /* Return a Lisp object read using the minibuffer, unevaluated. |
| 1059 | Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS | 1059 | Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS |
| 1060 | is a string to insert in the minibuffer before reading. | 1060 | is a string to insert in the minibuffer before reading. |
| 1061 | \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such | 1061 | \(INITIAL-CONTENTS can also be a cons of a string and an integer. |
| 1062 | arguments are used as in `read-from-minibuffer'.) */) | 1062 | Such arguments are used as in `read-from-minibuffer'.) */) |
| 1063 | (prompt, initial_contents) | 1063 | (prompt, initial_contents) |
| 1064 | Lisp_Object prompt, initial_contents; | 1064 | Lisp_Object prompt, initial_contents; |
| 1065 | { | 1065 | { |
| @@ -1073,8 +1073,8 @@ DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0, | |||
| 1073 | doc: /* Return value of Lisp expression read using the minibuffer. | 1073 | doc: /* Return value of Lisp expression read using the minibuffer. |
| 1074 | Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS | 1074 | Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS |
| 1075 | is a string to insert in the minibuffer before reading. | 1075 | is a string to insert in the minibuffer before reading. |
| 1076 | \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such | 1076 | \(INITIAL-CONTENTS can also be a cons of a string and an integer. |
| 1077 | arguments are used as in `read-from-minibuffer'.) */) | 1077 | Such arguments are used as in `read-from-minibuffer'.) */) |
| 1078 | (prompt, initial_contents) | 1078 | (prompt, initial_contents) |
| 1079 | Lisp_Object prompt, initial_contents; | 1079 | Lisp_Object prompt, initial_contents; |
| 1080 | { | 1080 | { |