mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Restore dock New Frame and Preferences menu functions (Bug#7535).
* term/common-win.el (x-setup-function-keys): Restore ns-new-frame and ns-show-prefs. * term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs bindings.
This commit is contained in:
parent
146490c35d
commit
3e972d981f
3 changed files with 12 additions and 2 deletions
|
|
@ -1,3 +1,11 @@
|
|||
2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* term/common-win.el (x-setup-function-keys): Restore ns-new-frame
|
||||
and ns-show-prefs (Bug#7535).
|
||||
|
||||
* term/ns-win.el (global-map): Restore ns-new-frame and ns-show-prefs
|
||||
bindings (Bug#7535).
|
||||
|
||||
2010-12-03 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* nxml/nxml-mode.el: Require rng-nxml.
|
||||
|
|
|
|||
|
|
@ -125,9 +125,9 @@ is not used)."
|
|||
;;; (cons (logior (lsh 0 16) 9) 'ns-insert-working-text)
|
||||
;;; (cons (logior (lsh 0 16) 10) 'ns-delete-working-text)
|
||||
(cons (logior (lsh 0 16) 11) 'ns-spi-service-call)
|
||||
;;; (cons (logior (lsh 0 16) 12) 'ns-new-frame)
|
||||
(cons (logior (lsh 0 16) 12) 'ns-new-frame)
|
||||
(cons (logior (lsh 0 16) 13) 'ns-toggle-toolbar)
|
||||
;;; (cons (logior (lsh 0 16) 14) 'ns-show-prefs)
|
||||
(cons (logior (lsh 0 16) 14) 'ns-show-prefs)
|
||||
))))
|
||||
(set-terminal-parameter frame 'x-setup-function-keys t)))
|
||||
|
||||
|
|
|
|||
|
|
@ -171,7 +171,9 @@ The properties returned may include `top', `left', `height', and `width'."
|
|||
(define-key global-map [ns-change-font] 'ns-respond-to-change-font)
|
||||
(define-key global-map [ns-open-file-line] 'ns-open-file-select-line)
|
||||
(define-key global-map [ns-spi-service-call] 'ns-spi-service-call)
|
||||
(define-key global-map [ns-new-frame] 'make-frame)
|
||||
(define-key global-map [ns-toggle-toolbar] 'ns-toggle-toolbar)
|
||||
(define-key global-map [ns-show-prefs] 'customize)
|
||||
|
||||
|
||||
;; Set up a number of aliases and other layers to pretend we're using
|
||||
|
|
|
|||
Loading…
Reference in a new issue