diff options
Diffstat (limited to 'src/callint.c')
| -rw-r--r-- | src/callint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/callint.c b/src/callint.c index 3c520742e27..489fa392e46 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -269,8 +269,9 @@ invoke it. If KEYS is omitted or nil, the return value of | |||
| 269 | recorded as a call to the function named callint_argfuns[varies[i]]. */ | 269 | recorded as a call to the function named callint_argfuns[varies[i]]. */ |
| 270 | int *varies; | 270 | int *varies; |
| 271 | 271 | ||
| 272 | register int i, j; | 272 | register size_t i, j; |
| 273 | int count, foo; | 273 | size_t count; |
| 274 | int foo; | ||
| 274 | char prompt1[100]; | 275 | char prompt1[100]; |
| 275 | char *tem1; | 276 | char *tem1; |
| 276 | int arg_from_tty = 0; | 277 | int arg_from_tty = 0; |
| @@ -430,8 +431,7 @@ invoke it. If KEYS is omitted or nil, the return value of | |||
| 430 | error ("Attempt to select inactive minibuffer window"); | 431 | error ("Attempt to select inactive minibuffer window"); |
| 431 | 432 | ||
| 432 | /* If the current buffer wants to clean up, let it. */ | 433 | /* If the current buffer wants to clean up, let it. */ |
| 433 | if (!NILP (Vmouse_leave_buffer_hook)) | 434 | Frun_hooks (1, &Qmouse_leave_buffer_hook); |
| 434 | call1 (Vrun_hooks, Qmouse_leave_buffer_hook); | ||
| 435 | 435 | ||
| 436 | Fselect_window (w, Qnil); | 436 | Fselect_window (w, Qnil); |
| 437 | } | 437 | } |