diff options
| author | Lars Ingebrigtsen | 2022-08-22 14:02:34 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-08-22 14:02:34 +0200 |
| commit | c202f22f4d884b341a8b079bfe5573e6c350be31 (patch) | |
| tree | 2e7c624a77d0f8a06cf38fa73902540243ed6d0d | |
| parent | f421efdb5f03d5f7efc3f6893c280b27e54a33cb (diff) | |
| download | emacs-c202f22f4d884b341a8b079bfe5573e6c350be31.tar.gz emacs-c202f22f4d884b341a8b079bfe5573e6c350be31.zip | |
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).
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 7299 | 7299 | ||
| 7300 | (define-minor-mode indent-tabs-mode | 7300 | (define-minor-mode indent-tabs-mode |
| 7301 | "Toggle whether indentation can insert TAB characters." | 7301 | "Toggle whether indentation can insert TAB characters." |
| 7302 | :global t :group 'indent :variable indent-tabs-mode) | 7302 | :group 'indent) |
| 7303 | 7303 | ||
| 7304 | (defvar widen-automatically t | 7304 | (defvar widen-automatically t |
| 7305 | "Non-nil means it is ok for commands to call `widen' when they want to. | 7305 | "Non-nil means it is ok for commands to call `widen' when they want to. |