]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix indent-tabs-mode globality
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 22 Aug 2022 12:02:34 +0000 (14:02 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 22 Aug 2022 12:02:34 +0000 (14:02 +0200)
* lisp/simple.el (indent-tabs-mode): This is not a global mode, so
don't claim it is (bug#49971).

lisp/simple.el

index d862c0e9a869ed802581cc216e3afe68c12406e0..460aff8bd826229bc4d03f0fc47525304c21613f 100644 (file)
@@ -7299,7 +7299,7 @@ or \"mark.*active\" at the prompt."
 
 (define-minor-mode indent-tabs-mode
   "Toggle whether indentation can insert TAB characters."
-  :global t :group 'indent :variable indent-tabs-mode)
+  :group 'indent)
 
 (defvar widen-automatically t
   "Non-nil means it is ok for commands to call `widen' when they want to.