diff options
| author | Stefan Monnier | 2014-11-16 00:30:12 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2014-11-16 00:30:12 -0500 |
| commit | 86790826398fa5e83853680899c8309890c7a766 (patch) | |
| tree | a97301ee98602c9977ce8ea92213d6f5b321887a /src | |
| parent | 4f4cf9c855f5818d4c3c0fb772db8bbcf4f33780 (diff) | |
| download | emacs-86790826398fa5e83853680899c8309890c7a766.tar.gz emacs-86790826398fa5e83853680899c8309890c7a766.zip | |
* src/frame.c (Fhandle_switch_frame): Deactivate shift-region (bug#19003).
* lisp/window.el (handle-select-window): Deactivate shift-region.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/frame.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4aa9958a52f..f9f3a0f96b7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-11-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * frame.c (Fhandle_switch_frame): Deactivate shift-region (bug#19003). | ||
| 4 | |||
| 1 | 2014-11-15 Jan Djärv <jan.h.d@swipnet.se> | 5 | 2014-11-15 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * nsterm.m (ns_send_appdefined): Check for application defined | 7 | * nsterm.m (ns_send_appdefined): Check for application defined |
diff --git a/src/frame.c b/src/frame.c index e894d218df7..307119c4482 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -913,7 +913,7 @@ This function returns FRAME, or nil if FRAME has been deleted. */) | |||
| 913 | return do_switch_frame (frame, 1, 0, norecord); | 913 | return do_switch_frame (frame, 1, 0, norecord); |
| 914 | } | 914 | } |
| 915 | 915 | ||
| 916 | DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e", | 916 | DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "^e", |
| 917 | doc: /* Handle a switch-frame event EVENT. | 917 | doc: /* Handle a switch-frame event EVENT. |
| 918 | Switch-frame events are usually bound to this function. | 918 | Switch-frame events are usually bound to this function. |
| 919 | A switch-frame event tells Emacs that the window manager has requested | 919 | A switch-frame event tells Emacs that the window manager has requested |