1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

ns-win: set ApplePressAndHoldEnabled to NO as it is unsupported.

This is in preparation for OS X "Lion"; it is a stop-gap solution
until this new input mechanism is supported correctly.
This commit is contained in:
David Reitter 2011-06-21 11:45:36 -07:00
parent a9041e6caf
commit cd93b35930
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2011-06-21 Tim Harper <timcharper@gmail.com>
* term/ns-win.el (ns-initialize-window-system): set
application-specific `ApplePressAndHoldEnabled' system
resource to NO as it is not yet supported by the NS port.
2011-06-21 Juanma Barranquero <lekktu@gmail.com>
* misc.el (list-dynamic-libraries--refresh): Compute header here...

View File

@ -916,6 +916,11 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
;; FIXME: This will surely lead to "MODIFIED OUTSIDE CUSTOM" warnings.
(menu-bar-mode (if (get-lisp-resource nil "Menus") 1 -1))
;; OS X Lion introduces PressAndHold, which is unsupported by this port.
;; See this thread for more details:
;; http://lists.gnu.org/archive/html/emacs-devel/2011-06/msg00505.html
(ns-set-resource nil "ApplePressAndHoldEnabled" "NO")
(setq ns-initialized t))
(add-to-list 'handle-args-function-alist '(ns . x-handle-args))