diff options
| author | Stefan Monnier | 2002-06-27 16:23:29 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-06-27 16:23:29 +0000 |
| commit | 5b62b30130e109be26ae4032c2e879425ca9301f (patch) | |
| tree | 0ca9a1782c0043fb208b56f2266f2e1be26359cb /src | |
| parent | 23a3b59824d815754d893c0a5cb9319ddae357e1 (diff) | |
| download | emacs-5b62b30130e109be26ae4032c2e879425ca9301f.tar.gz emacs-5b62b30130e109be26ae4032c2e879425ca9301f.zip | |
(minibuffer_completion_contents): Add return type.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/minibuf.c | 1 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c07d2c3e8e8..c410c2e8a4e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,10 @@ | |||
| 1 | 2002-06-27 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * minibuf.c (minibuffer_completion_contents): Add return type. | ||
| 4 | |||
| 1 | 2002-06-27 Juanma Barranquero <lektu@terra.es> | 5 | 2002-06-27 Juanma Barranquero <lektu@terra.es> |
| 2 | 6 | ||
| 3 | * charset.c (Fchar_bytes): Remove obsolescence info from | 7 | * charset.c (Fchar_bytes): Remove obsolescence info from docstring. |
| 4 | docstring. | ||
| 5 | 8 | ||
| 6 | 2002-06-26 Juanma Barranquero <lektu@terra.es> | 9 | 2002-06-26 Juanma Barranquero <lektu@terra.es> |
| 7 | 10 | ||
| @@ -11,7 +14,7 @@ | |||
| 11 | 14 | ||
| 12 | * window.c (Frecenter): Don't set force_start flag. | 15 | * window.c (Frecenter): Don't set force_start flag. |
| 13 | 16 | ||
| 14 | * minibuf.c (do_completion, Fminibuffer_complete_word) | 17 | * minibuf.c (do_completion, Fminibuffer_complete_word) |
| 15 | (Fminibuffer_completion_help): Complete just the text before point. | 18 | (Fminibuffer_completion_help): Complete just the text before point. |
| 16 | (minibuffer_completion_contents): New function. | 19 | (minibuffer_completion_contents): New function. |
| 17 | 20 | ||
diff --git a/src/minibuf.c b/src/minibuf.c index dc0e16c7ba2..3d9451b2bc9 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -369,6 +369,7 @@ The current buffer must be a minibuffer. */) | |||
| 369 | /* Get the text in the minibuffer before point. | 369 | /* Get the text in the minibuffer before point. |
| 370 | That is what completion commands operate on. */ | 370 | That is what completion commands operate on. */ |
| 371 | 371 | ||
| 372 | Lisp_Object | ||
| 372 | minibuffer_completion_contents () | 373 | minibuffer_completion_contents () |
| 373 | { | 374 | { |
| 374 | int prompt_end = XINT (Fminibuffer_prompt_end ()); | 375 | int prompt_end = XINT (Fminibuffer_prompt_end ()); |