aboutsummaryrefslogtreecommitdiffstats
path: root/src/callint.c
diff options
context:
space:
mode:
authorJoakim Verona2015-01-11 18:40:21 +0100
committerJoakim Verona2015-01-11 18:40:21 +0100
commitcc7cb20d6abc0f862e5513b24831bba0eaecaa5f (patch)
treeafc2fc05401504aa0c28699dc3bc155c5b0d7f58 /src/callint.c
parentd972b504f30ff4300ba368940751e8736dddf0b4 (diff)
parent9a57bda31569294ecaf8138a06e5edda9c0d87e3 (diff)
downloademacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.tar.gz
emacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.zip
merge master, fix conflicts
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c14
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
31Lisp_Object Qminus, Qplus;
32static Lisp_Object Qfuncall_interactively;
33static Lisp_Object Qcommand_debug_status;
34static Lisp_Object Qenable_recursive_minibuffers;
35
36static Lisp_Object Qhandle_shift_selection;
37static Lisp_Object Qread_number;
38
39Lisp_Object Qmouse_leave_buffer_hook;
40
41static Lisp_Object Qlist, Qlet, Qletx, Qsave_excursion, Qif;
42Lisp_Object Qwhen, Qprogn;
43static Lisp_Object preserved_fns; 31static 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 }