diff options
| author | Stefan Monnier | 2011-03-31 00:24:03 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2011-03-31 00:24:03 -0400 |
| commit | 40d83b412f584cc02e68d4eac8fd5e6eb769e2fe (patch) | |
| tree | b56f27a7e6d75a8c1fd27b00179a27b5efea0a32 /src/callint.c | |
| parent | f488fb6528738131ef41859e1f04125f2e50efce (diff) | |
| parent | 44f230aa043ebb222aa0876b44d70484d5dd38db (diff) | |
| download | emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.tar.gz emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.zip | |
Merge from trunk
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 | } |