diff options
| author | Stefan Monnier | 2007-09-20 21:49:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-09-20 21:49:18 +0000 |
| commit | d3615887a6bfcae39f08e79483dd25062d13e441 (patch) | |
| tree | 84278460d0e44fa9b5fec89e4a7eb367b4af92e5 /lisp | |
| parent | c5911e55780cb503c6ebf14628a5d346b740eb48 (diff) | |
| download | emacs-d3615887a6bfcae39f08e79483dd25062d13e441.tar.gz emacs-d3615887a6bfcae39f08e79483dd25062d13e441.zip | |
Bind C-z to suspend-frame instead of suspend-emacs.
Diffstat (limited to 'lisp')
| -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." | |||
| 657 | (define-key global-map "\e\e\e" 'keyboard-escape-quit) | 657 | (define-key global-map "\e\e\e" 'keyboard-escape-quit) |
| 658 | (define-key global-map "\C-g" 'keyboard-quit) | 658 | (define-key global-map "\C-g" 'keyboard-quit) |
| 659 | 659 | ||
| 660 | ;; Used to be in termdev.el: when using several terminals, make C-z | ||
| 661 | ;; suspend only the relevant terminal. | ||
| 662 | (substitute-key-definition 'suspend-emacs 'suspend-frame global-map) | ||
| 663 | |||
| 660 | (define-key global-map "\C-j" 'newline-and-indent) | 664 | (define-key global-map "\C-j" 'newline-and-indent) |
| 661 | (define-key global-map "\C-m" 'newline) | 665 | (define-key global-map "\C-m" 'newline) |
| 662 | (define-key global-map "\C-o" 'open-line) | 666 | (define-key global-map "\C-o" 'open-line) |