]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/outline.el (outline-mode-cycle-map): Don't bind `tab`.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 9 Jul 2021 03:00:03 +0000 (23:00 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 9 Jul 2021 03:00:03 +0000 (23:00 -0400)
Since it would take precedence over bindings for TAB in higher
precedence maps.

lisp/outline.el

index 68b8f4b6dda54c86a636794e75740a673e12b6d4..0bb74ffd64a8cf86a59812ef8006e43b50d232e3 100644 (file)
@@ -182,7 +182,6 @@ in the file it applies to.")
                          ;; Only takes effect if point is on a heading.
                          :filter ,(lambda (cmd)
                                     (when (outline-on-heading-p) cmd)))))
-      (define-key map [tab]       tab-binding)
       (define-key map (kbd "TAB") tab-binding)
       (define-key map (kbd "<backtab>") #'outline-cycle-buffer))
     map)