emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100102: Bug#7150: Distinguishing


From: Jan D.
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100102: Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
Date: Mon, 11 Oct 2010 21:18:08 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100102
committer: Jan D. <address@hidden>
branch nick: emacs-23
timestamp: Mon 2010-10-11 21:18:08 +0200
message:
  Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX.
  
  * lisp/cus-start.el (all): ns-right-alternate-modifier is new.
  
  * lisp/term/ns-win.el (ns-right-alternate-modifier): New defvar.
  (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
  (mac-right-option-modifier): New alias for ns-right-option-modifier.
  
  * src/nsterm.m (Qleft): Declare.
  (ns_right_alternate_modifier): New variable
  (NSRightAlternateKeyMask): New define.
  (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
  ns_right_alternate_modifier isn't Qleft.
  (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
  as emacs modifier for NSRightAlternateKeyMask.
  (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/cus-start.el
  lisp/term/ns-win.el
  src/ChangeLog
  src/nsterm.m
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2010-09-19 09:49:21 +0000
+++ b/etc/NEWS  2010-10-11 19:18:08 +0000
@@ -21,6 +21,9 @@
 
 * Changes in Emacs 23.3
 
+** The nextstep port can have different modifiers for the left and right
+alt/option key by customizing the value for ns-right-alternate-modifier.
+
 
 * Editing Changes in Emacs 23.3
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-10-10 19:31:40 +0000
+++ b/lisp/ChangeLog    2010-10-11 19:18:08 +0000
@@ -1,3 +1,11 @@
+ 2010-10-10  Jan Djärv  <address@hidden>
+ 
+       * term/ns-win.el (ns-right-alternate-modifier): New defvar.
+       (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
+       (mac-right-option-modifier): New alias for ns-right-option-modifier.
+ 
+       * cus-start.el (all): ns-right-alternate-modifier is new.
+ 
 2010-10-10  Andreas Schwab  <address@hidden>
 
        * Makefile.in (ELCFILES): Update.

=== modified file 'lisp/cus-start.el'
--- a/lisp/cus-start.el 2010-01-13 08:35:10 +0000
+++ b/lisp/cus-start.el 2010-10-11 19:18:08 +0000
@@ -266,6 +266,14 @@
                      (const control) (const meta)
                      (const alt) (const hyper)
                      (const super)) "23.1")
+            (ns-right-alternate-modifier
+             ns
+             (choice (const :tag "No modifier (work as alternate/option)" none)
+                     (const :tag "Use the value of ns-alternate-modifier"
+                            left)
+                     (const control) (const meta)
+                     (const alt) (const hyper)
+                     (const super)) "23.3")
             (ns-function-modifier
              ns
              (choice (const :tag "No modifier (work as function)" none)

=== modified file 'lisp/term/ns-win.el'
--- a/lisp/term/ns-win.el       2010-01-13 08:35:10 +0000
+++ b/lisp/term/ns-win.el       2010-10-11 19:18:08 +0000
@@ -66,6 +66,7 @@
 ;; nsterm.m
 (defvar ns-version-string)
 (defvar ns-alternate-modifier)
+(defvar ns-right-alternate-modifier)
 
 ;;;; Command line argument handling.
 
@@ -286,6 +287,7 @@
 (defvaralias 'mac-command-modifier 'ns-command-modifier)
 (defvaralias 'mac-control-modifier 'ns-control-modifier)
 (defvaralias 'mac-option-modifier 'ns-option-modifier)
+(defvaralias 'mac-right-option-modifier 'ns-right-option-modifier)
 (defvaralias 'mac-function-modifier 'ns-function-modifier)
 (declare-function ns-do-applescript "nsfns.m" (script))
 (defalias 'do-applescript 'ns-do-applescript)
@@ -817,6 +819,7 @@
 
 ;; You say tomAYto, I say tomAHto..
 (defvaralias 'ns-option-modifier 'ns-alternate-modifier)
+(defvaralias 'ns-right-option-modifier 'ns-right-alternate-modifier)
 
 (defun ns-do-hide-emacs ()
   (interactive)

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-10-08 11:40:23 +0000
+++ b/src/ChangeLog     2010-10-11 19:18:08 +0000
@@ -1,3 +1,14 @@
+2010-10-10  Jan Djärv  <address@hidden>
+
+       * nsterm.m (Qleft): Declare.
+       (ns_right_alternate_modifier): New variable
+       (NSRightAlternateKeyMask): New define.
+       (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
+       ns_right_alternate_modifier isn't Qleft.
+       (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
+       as emacs modifier for NSRightAlternateKeyMask.
+       (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
+
 2010-10-08  Michael Albinus  <address@hidden>
 
        * dbusbind.c (xd_get_dispatch_status): Return a Lisp_Object.

=== modified file 'src/nsterm.m'
--- a/src/nsterm.m      2010-07-05 09:58:31 +0000
+++ b/src/nsterm.m      2010-10-11 19:18:08 +0000
@@ -142,13 +142,18 @@
 Lisp_Object Vx_toolkit_scroll_bars;
 static Lisp_Object Qmodifier_value;
 Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qsuper, Qnone;
-extern Lisp_Object Qcursor_color, Qcursor_type, Qns;
+extern Lisp_Object Qcursor_color, Qcursor_type, Qns, Qleft;
 
 /* Specifies which emacs modifier should be generated when NS receives
    the Alternate modifer.  May be Qnone or any of the modifier lisp symbols. */
 Lisp_Object ns_alternate_modifier;
 
 /* Specifies which emacs modifier should be generated when NS receives
+   the right Alternate modifer.  Has same values as ns_alternate_modifier plus
+   the value Qleft which means whatever value ns_alternate_modifier has.  */
+Lisp_Object ns_right_alternate_modifier;
+
+/* Specifies which emacs modifier should be generated when NS receives
    the Command modifer.  May be any of the modifier lisp symbols. */
 Lisp_Object ns_command_modifier;
 
@@ -218,12 +223,17 @@
 
 /* Convert modifiers in a NeXTSTEP event to emacs style modifiers.  */
 #define NS_FUNCTION_KEY_MASK 0x800000
+#define NSRightAlternateKeyMask (0x000040 | NSAlternateKeyMask)
 #define EV_MODIFIERS(e)                               \
     ((([e modifierFlags] & NSHelpKeyMask) ?           \
            hyper_modifier : 0)                        \
-     | (([e modifierFlags] & NSAlternateKeyMask) ?    \
+     | (!EQ (ns_right_alternate_modifier, Qleft) && \
+        (([e modifierFlags] & NSRightAlternateKeyMask) \
+         == NSRightAlternateKeyMask) ? \
+           parse_solitary_modifier (ns_right_alternate_modifier) : 0) \
+     | (([e modifierFlags] & NSAlternateKeyMask) ?                 \
            parse_solitary_modifier (ns_alternate_modifier) : 0)   \
-     | (([e modifierFlags] & NSShiftKeyMask) ?        \
+     | (([e modifierFlags] & NSShiftKeyMask) ?     \
            shift_modifier : 0)                        \
      | (([e modifierFlags] & NSControlKeyMask) ?      \
            parse_solitary_modifier (ns_control_modifier) : 0)     \
@@ -4423,7 +4433,13 @@
           emacs_event->modifiers |=
             parse_solitary_modifier (ns_function_modifier);
 
-      if (flags & NSAlternateKeyMask) /* default = meta */
+      if (!EQ (ns_right_alternate_modifier, Qleft)
+          && ((flags & NSRightAlternateKeyMask) == NSRightAlternateKeyMask)) 
+       {
+         emacs_event->modifiers |= parse_solitary_modifier
+            (ns_right_alternate_modifier);
+       }
+      else if (flags & NSAlternateKeyMask) /* default = meta */
         {
           if ((NILP (ns_alternate_modifier) || EQ (ns_alternate_modifier, 
Qnone))
               && !fnKeysym)
@@ -6185,6 +6201,14 @@
 at all, allowing it to be used at a lower level for accented character 
entry.");
   ns_alternate_modifier = Qmeta;
 
+  DEFVAR_LISP ("ns-right-alternate-modifier", &ns_right_alternate_modifier,
+               "This variable describes the behavior of the right alternate or 
option key.\n\
+Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
+Set to left means be the same key as `ns-alternate-modifier'.\n\
+Set to none means that the alternate / option key is not interpreted by 
Emacs\n\
+at all, allowing it to be used at a lower level for accented character 
entry.");
+  ns_right_alternate_modifier = Qleft;
+
   DEFVAR_LISP ("ns-command-modifier", &ns_command_modifier,
                "This variable describes the behavior of the command key.\n\
 Set to control, meta, alt, super, or hyper means it is taken to be that key.");


reply via email to

[Prev in Thread] Current Thread [Next in Thread]