diff options
| author | Joakim Verona | 2015-01-11 18:40:21 +0100 |
|---|---|---|
| committer | Joakim Verona | 2015-01-11 18:40:21 +0100 |
| commit | cc7cb20d6abc0f862e5513b24831bba0eaecaa5f (patch) | |
| tree | afc2fc05401504aa0c28699dc3bc155c5b0d7f58 /src/callint.c | |
| parent | d972b504f30ff4300ba368940751e8736dddf0b4 (diff) | |
| parent | 9a57bda31569294ecaf8138a06e5edda9c0d87e3 (diff) | |
| download | emacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.tar.gz emacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.zip | |
merge master, fix conflicts
Diffstat (limited to 'src/callint.c')
| -rw-r--r-- | src/callint.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/callint.c b/src/callint.c index 200c9ed9d7d..25955039ac7 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -28,18 +28,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 28 | #include "window.h" | 28 | #include "window.h" |
| 29 | #include "keymap.h" | 29 | #include "keymap.h" |
| 30 | 30 | ||
| 31 | Lisp_Object Qminus, Qplus; | ||
| 32 | static Lisp_Object Qfuncall_interactively; | ||
| 33 | static Lisp_Object Qcommand_debug_status; | ||
| 34 | static Lisp_Object Qenable_recursive_minibuffers; | ||
| 35 | |||
| 36 | static Lisp_Object Qhandle_shift_selection; | ||
| 37 | static Lisp_Object Qread_number; | ||
| 38 | |||
| 39 | Lisp_Object Qmouse_leave_buffer_hook; | ||
| 40 | |||
| 41 | static Lisp_Object Qlist, Qlet, Qletx, Qsave_excursion, Qif; | ||
| 42 | Lisp_Object Qwhen, Qprogn; | ||
| 43 | static Lisp_Object preserved_fns; | 31 | static Lisp_Object preserved_fns; |
| 44 | 32 | ||
| 45 | /* Marker used within call-interactively to refer to point. */ | 33 | /* Marker used within call-interactively to refer to point. */ |
| @@ -477,7 +465,7 @@ invoke it. If KEYS is omitted or nil, the return value of | |||
| 477 | error ("Attempt to select inactive minibuffer window"); | 465 | error ("Attempt to select inactive minibuffer window"); |
| 478 | 466 | ||
| 479 | /* If the current buffer wants to clean up, let it. */ | 467 | /* If the current buffer wants to clean up, let it. */ |
| 480 | Frun_hooks (1, &Qmouse_leave_buffer_hook); | 468 | run_hook (Qmouse_leave_buffer_hook); |
| 481 | 469 | ||
| 482 | Fselect_window (w, Qnil); | 470 | Fselect_window (w, Qnil); |
| 483 | } | 471 | } |