diff options
Diffstat (limited to 'src')
| -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 87cdcea4522..eeaad5583e6 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1942,7 +1942,7 @@ Return nil if there is no valid completion, else t. */) | |||
| 1942 | { | 1942 | { |
| 1943 | Lisp_Object completion, tem, tem1; | 1943 | Lisp_Object completion, tem, tem1; |
| 1944 | register int i, i_byte; | 1944 | register int i, i_byte; |
| 1945 | register unsigned char *completion_string; | 1945 | register const unsigned char *completion_string; |
| 1946 | struct gcpro gcpro1, gcpro2; | 1946 | struct gcpro gcpro1, gcpro2; |
| 1947 | int prompt_end_charpos = XINT (Fminibuffer_prompt_end ()); | 1947 | int prompt_end_charpos = XINT (Fminibuffer_prompt_end ()); |
| 1948 | 1948 | ||
| @@ -2365,7 +2365,7 @@ If no minibuffer is active, return nil. */) | |||
| 2365 | 2365 | ||
| 2366 | void | 2366 | void |
| 2367 | temp_echo_area_glyphs (m) | 2367 | temp_echo_area_glyphs (m) |
| 2368 | char *m; | 2368 | const char *m; |
| 2369 | { | 2369 | { |
| 2370 | int osize = ZV; | 2370 | int osize = ZV; |
| 2371 | int osize_byte = ZV_BYTE; | 2371 | int osize_byte = ZV_BYTE; |