diff options
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/nsterm.m | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ad4a85ae487..709fd505af7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2015-01-21 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * nsterm.m (EV_TRAILER2): Set Vinhibit_quit to Qt (Bug#19531). | ||
| 4 | |||
| 1 | 2015-01-17 Eli Zaretskii <eliz@gnu.org> | 5 | 2015-01-17 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (produce_image_glyph): Fix display of images in R2L | 7 | * xdisp.c (produce_image_glyph): Fix display of images in R2L |
diff --git a/src/nsterm.m b/src/nsterm.m index 9ba08522309..24770f6dd10 100644 --- a/src/nsterm.m +++ b/src/nsterm.m | |||
| @@ -378,8 +378,11 @@ static CGPoint menu_mouse_point; | |||
| 378 | if (e) emacs_event->timestamp = EV_TIMESTAMP (e); \ | 378 | if (e) emacs_event->timestamp = EV_TIMESTAMP (e); \ |
| 379 | if (q_event_ptr) \ | 379 | if (q_event_ptr) \ |
| 380 | { \ | 380 | { \ |
| 381 | Lisp_Object tem = Vinhibit_quit; \ | ||
| 382 | Vinhibit_quit = Qt; \ | ||
| 381 | n_emacs_events_pending++; \ | 383 | n_emacs_events_pending++; \ |
| 382 | kbd_buffer_store_event_hold (emacs_event, q_event_ptr); \ | 384 | kbd_buffer_store_event_hold (emacs_event, q_event_ptr); \ |
| 385 | Vinhibit_quit = tem; \ | ||
| 383 | } \ | 386 | } \ |
| 384 | else \ | 387 | else \ |
| 385 | hold_event (emacs_event); \ | 388 | hold_event (emacs_event); \ |