From: YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
To: Ivan Andrus <IAndrus@omniture.com>, 3792@emacsbugs.donarmstrong.com
Subject: bug#3792: 23.1.50; other-window misbehaving with C-tab keybinding
Date: Sat, 11 Jul 2009 16:44:47 +0900 [thread overview]
Message-ID: <wleisnd5ow.wl%mituharu@math.s.chiba-u.ac.jp> (raw)
In-Reply-To: <C67CB6D5.8F92E%iandrus@omniture.com>
>>>>> On Fri, 10 Jul 2009 09:13:55 -0600, Ivan Andrus <IAndrus@omniture.com> said:
> I noticed that view-lossage shows two <C-tab> for every time I press
> it. In nsterm.m it specifically checks for control-tab and
> references
> http://osdir.com/ml/editors.vim.mac/2007-10/msg00141.html
> Which in turn references
> https://bugzilla.mozilla.org/show_bug.cgi?id=374076#c12
> Which makes me think that in Mac OS 10.4 the control-tab keyDown
> event isn't sent, but in 10.5 it is. Or at the very least in the
> latest version of 10.5 (I'm running 10.5.7) it sends a keyDown
> event.
FWIW, the latest release of my Carbon+AppKit port (*), which also uses
Cocoa for GUI stuff, has the problem that it doesn't recognize
Control-Tab on Mac OS X 10.4 and earlier. And I'm planning to add the
following change to the next release:
*: http://lists.gnu.org/archive/html/emacs-devel/2009-06/msg00532.html
*** ../../emacs-22.3-appkit-1.4/src/macappkit.m 2009-06-27 13:49:25.000000000 +0900
--- macappkit.m 2009-07-10 10:54:02.000000000 +0900
*************** static EventRef peek_if_next_event_activ
*** 747,753 ****
if (!(mac_mapped_modifiers (modifiers, [event keyCode])
& ~(mac_pass_command_to_system ? cmdKey : 0)
& ~(mac_pass_control_to_system ? controlKey : 0))
! && ([NSApp keyWindow] || (flags & NSCommandKeyMask)))
goto OTHER;
characters = [event characters];
--- 747,764 ----
if (!(mac_mapped_modifiers (modifiers, [event keyCode])
& ~(mac_pass_command_to_system ? cmdKey : 0)
& ~(mac_pass_control_to_system ? controlKey : 0))
! && ([NSApp keyWindow] || (flags & NSCommandKeyMask))
! #if MAC_OS_X_VERSION_MIN_REQUIRED < 1050
! /* This is a workaround for the problem that Control-Tab
! is not recognized on Mac OS X 10.4 and earlier. */
! && !(floor (NSAppKitVersionNumber) <= NSAppKitVersionNumber10_4
! && [[[NSApp keyWindow] firstResponder]
! isMemberOfClass:[EmacsView class]]
! && [event keyCode] == 0x30 /* kVK_Tab */
! && ((flags & (NSControlKeyMask | NSCommandKeyMask))
! == NSControlKeyMask))
! #endif
! )
goto OTHER;
characters = [event characters];
On Mac OS X 10.4 and earlier, the first responder object doesn't
receive the keyDown: message for Control-Tab. But still NSApplication
and NSWindow objects can detect such NSKeyDown events via sendEvent:.
Processing key events at the timing of keyUp: gives a strange feeling
to the user because the command bound to the key is executed much
later than expected and auto-repeat does not work.
YAMAMOTO Mitsuharu
mituharu@math.s.chiba-u.ac.jp
next prev parent reply other threads:[~2009-07-11 7:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-10 15:13 bug#3792: #3792 - 23.1.50; other-window misbehaving with C-tab keybinding - Emacs bug report logs Ivan Andrus
2009-07-11 7:44 ` YAMAMOTO Mitsuharu [this message]
2009-07-11 17:55 ` Harald Maier
-- strict thread matches above, loose matches on Subject: below --
2009-07-08 19:29 bug#3792: 23.1.50; other-window misbehaving with C-tab keybinding Ivan Andrus
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=wleisnd5ow.wl%mituharu@math.s.chiba-u.ac.jp \
--to=mituharu@math.s.chiba-u.ac.jp \
--cc=3792@emacsbugs.donarmstrong.com \
--cc=IAndrus@omniture.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.