diff options
| author | Dan Nicolaescu | 2006-07-27 18:31:23 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2006-07-27 18:31:23 +0000 |
| commit | cecee05315c95c7babfc66297cfd3c787f8a9ff3 (patch) | |
| tree | c3d03a9442e5c57c0adecaa684905e647d8d0fd0 | |
| parent | dfed8466d38ed33973e85bfef2340bbf3f67f630 (diff) | |
| download | emacs-cecee05315c95c7babfc66297cfd3c787f8a9ff3.tar.gz emacs-cecee05315c95c7babfc66297cfd3c787f8a9ff3.zip | |
(terminal-init-xterm): Fix bindings for C-tab,
S-tab and C-S-tab.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/term/xterm.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6babbfc4739..3869f598f65 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab, | ||
| 4 | S-tab and C-S-tab. | ||
| 5 | |||
| 1 | 2006-07-28 Nick Roberts <nickrob@snap.net.nz> | 6 | 2006-07-28 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 7 | ||
| 3 | * progmodes/which-func.el (which-function): Fix documentation/ | 8 | * progmodes/which-func.el (which-function): Fix documentation/ |
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el index 3504986405e..7622f23752b 100644 --- a/lisp/term/xterm.el +++ b/lisp/term/xterm.el | |||
| @@ -230,17 +230,17 @@ | |||
| 230 | 230 | ||
| 231 | ;; These keys are available in xterm starting from version 214 | 231 | ;; These keys are available in xterm starting from version 214 |
| 232 | ;; if the modifyOtherKeys resource is set to 1. | 232 | ;; if the modifyOtherKeys resource is set to 1. |
| 233 | (define-key map "\e[27;5;9~" [?\C-\t]) | 233 | (define-key map "\e[27;5;9~" [C-tab]) |
| 234 | (define-key map "\e[27;5;13~" [C-return]) | 234 | (define-key map "\e[27;5;13~" [C-return]) |
| 235 | (define-key map "\e[27;5;44~" [?\C-,]) | 235 | (define-key map "\e[27;5;44~" [?\C-,]) |
| 236 | (define-key map "\e[27;5;46~" [?\C-.]) | 236 | (define-key map "\e[27;5;46~" [?\C-.]) |
| 237 | (define-key map "\e[27;5;47~" [?\C-/]) | 237 | (define-key map "\e[27;5;47~" [?\C-/]) |
| 238 | (define-key map "\e[27;5;92~" [?\C-\\]) | 238 | (define-key map "\e[27;5;92~" [?\C-\\]) |
| 239 | 239 | ||
| 240 | (define-key map "\e[27;2;9~" [?\S-\t]) | 240 | (define-key map "\e[27;2;9~" [S-tab]) |
| 241 | (define-key map "\e[27;2;13~" [S-return]) | 241 | (define-key map "\e[27;2;13~" [S-return]) |
| 242 | 242 | ||
| 243 | (define-key map "\e[27;6;9~" [?\C-\S-\t]) | 243 | (define-key map "\e[27;6;9~" [(C-S-tab)]) |
| 244 | 244 | ||
| 245 | (define-key map "\e[27;13;46~" [?\C-\M-.]) | 245 | (define-key map "\e[27;13;46~" [?\C-\M-.]) |
| 246 | 246 | ||