From: Lars Ingebrigtsen Date: Mon, 22 Aug 2022 12:02:34 +0000 (+0200) Subject: Fix indent-tabs-mode globality X-Git-Tag: emacs-29.0.90~1893^2~100 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c202f22f4d884b341a8b079bfe5573e6c350be31;p=emacs.git 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). --- 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.