diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-20 21:49:18 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-20 21:49:18 +0000 |
commit | d3615887a6bfcae39f08e79483dd25062d13e441 (patch) | |
tree | 84278460d0e44fa9b5fec89e4a7eb367b4af92e5 /lisp/bindings.el | |
parent | c5911e55780cb503c6ebf14628a5d346b740eb48 (diff) | |
download | emacs-d3615887a6bfcae39f08e79483dd25062d13e441.tar.gz |
Bind C-z to suspend-frame instead of suspend-emacs.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 77c0423e157..54a322011b9 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -657,6 +657,10 @@ language you are using." (define-key global-map "\e\e\e" 'keyboard-escape-quit) (define-key global-map "\C-g" 'keyboard-quit) +;; Used to be in termdev.el: when using several terminals, make C-z +;; suspend only the relevant terminal. +(substitute-key-definition 'suspend-emacs 'suspend-frame global-map) + (define-key global-map "\C-j" 'newline-and-indent) (define-key global-map "\C-m" 'newline) (define-key global-map "\C-o" 'open-line) |