aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2005-08-04 01:36:10 +0000
committerJuri Linkov2005-08-04 01:36:10 +0000
commit70fec115d4fcd005127b47bd88fefc374fd57597 (patch)
treec14b7ab9b6381c1dc4918011727de32d607b577d
parent359521295930d0b43ff429b23292e4a1562a3d9d (diff)
downloademacs-70fec115d4fcd005127b47bd88fefc374fd57597.tar.gz
emacs-70fec115d4fcd005127b47bd88fefc374fd57597.zip
(compilation-mode-map): Bind TAB to `compilation-next-error'
and [backtab] to `compilation-previous-error'.
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 58caa4dc992..fa9eac2e021 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1158,6 +1158,8 @@ exited abnormally with code %d\n"
1158 (define-key map "\M-p" 'compilation-previous-error) 1158 (define-key map "\M-p" 'compilation-previous-error)
1159 (define-key map "\M-{" 'compilation-previous-file) 1159 (define-key map "\M-{" 'compilation-previous-file)
1160 (define-key map "\M-}" 'compilation-next-file) 1160 (define-key map "\M-}" 'compilation-next-file)
1161 (define-key map "\t" 'compilation-next-error)
1162 (define-key map [backtab] 'compilation-previous-error)
1161 1163
1162 (define-key map " " 'scroll-up) 1164 (define-key map " " 'scroll-up)
1163 (define-key map "\^?" 'scroll-down) 1165 (define-key map "\^?" 'scroll-down)