diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-21 16:30:50 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-21 16:30:50 +0000 |
commit | eb7c9b64b7f6888fa147b4337e6e0b2c901bb179 (patch) | |
tree | 5b0c0d71e4fa3f0427ce1dcb71cb301e7252d706 /src/minibuf.c | |
parent | d562f8abe78b39316a84c6dc5d96de858b7331f4 (diff) | |
download | emacs-eb7c9b64b7f6888fa147b4337e6e0b2c901bb179.tar.gz |
(Fminibuffer_prompt_end, Feval_minibuffer): Fix typos in docstrings.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 5a1dffdbc37..1d2d7372a4a 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -349,7 +349,7 @@ BUFFER can be a buffer or a buffer name. */) DEFUN ("minibuffer-prompt-end", Fminibuffer_prompt_end, Sminibuffer_prompt_end, 0, 0, 0, doc: /* Return the buffer position of the end of the minibuffer prompt. -Return (point-min) if current buffer is not a mini-buffer. */) +Return (point-min) if current buffer is not a minibuffer. */) () { /* This function is written to be most efficient when there's a prompt. */ @@ -1014,7 +1014,7 @@ DEFUN ("eval-minibuffer", Feval_minibuffer, Seval_minibuffer, 1, 2, 0, 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') */) +arguments are used as in `read-from-minibuffer'.) */) (prompt, initial_contents) Lisp_Object prompt, initial_contents; { |