aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2021-07-08 23:00:03 -0400
committerStefan Monnier2021-07-08 23:00:03 -0400
commitc73bc89e663290649e4c9a89b15f96b885bcd736 (patch)
treee43090dcc89db7e461975fff5ad6155f4ac076f5
parent4bfdf8c78ee8d4f85f0d226006c3cc891bee837f (diff)
downloademacs-c73bc89e663290649e4c9a89b15f96b885bcd736.tar.gz
emacs-c73bc89e663290649e4c9a89b15f96b885bcd736.zip
* lisp/outline.el (outline-mode-cycle-map): Don't bind `tab`.
Since it would take precedence over bindings for TAB in higher precedence maps.
-rw-r--r--lisp/outline.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/outline.el b/lisp/outline.el
index 68b8f4b6dda..0bb74ffd64a 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -182,7 +182,6 @@ in the file it applies to.")
182 ;; Only takes effect if point is on a heading. 182 ;; Only takes effect if point is on a heading.
183 :filter ,(lambda (cmd) 183 :filter ,(lambda (cmd)
184 (when (outline-on-heading-p) cmd))))) 184 (when (outline-on-heading-p) cmd)))))
185 (define-key map [tab] tab-binding)
186 (define-key map (kbd "TAB") tab-binding) 185 (define-key map (kbd "TAB") tab-binding)
187 (define-key map (kbd "<backtab>") #'outline-cycle-buffer)) 186 (define-key map (kbd "<backtab>") #'outline-cycle-buffer))
188 map) 187 map)