From c202f22f4d884b341a8b079bfe5573e6c350be31 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 22 Aug 2022 14:02:34 +0200 Subject: [PATCH] Fix indent-tabs-mode globality * lisp/simple.el (indent-tabs-mode): This is not a global mode, so don't claim it is (bug#49971). --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index d862c0e9a86..460aff8bd82 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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. -- 2.39.5