diff options
| author | Philipp Stephani | 2022-01-14 20:49:35 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2022-01-15 12:07:01 +0100 |
| commit | 7f36aca99dc1387cfeb599c9f2bb781036f79cf1 (patch) | |
| tree | f4b6c2586af2b569803045c58fa261f97919a639 | |
| parent | 5990148860094bc3ad0ec55e4edac543d1c2036e (diff) | |
| download | emacs-7f36aca99dc1387cfeb599c9f2bb781036f79cf1.tar.gz emacs-7f36aca99dc1387cfeb599c9f2bb781036f79cf1.zip | |
* lisp/indent.el (tab-first-completion): Fix incorrect choices.
| -rw-r--r-- | lisp/indent.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index f0c11ad0df4..48e5b309e48 100644 --- a/lisp/indent.el +++ b/lisp/indent.el | |||
| @@ -77,10 +77,11 @@ This variable has no effect unless `tab-always-indent' is `complete'." | |||
| 77 | :group 'indent | 77 | :group 'indent |
| 78 | :type '(choice | 78 | :type '(choice |
| 79 | (const :tag "Always complete" nil) | 79 | (const :tag "Always complete" nil) |
| 80 | (const :tag "Unless at the end of a line" 'eol) | 80 | (const :tag "Unless at the end of a line" eol) |
| 81 | (const :tag "Unless looking at a word" 'word) | 81 | (const :tag "Unless looking at a word" word) |
| 82 | (const :tag "Unless at a word or parenthesis" 'word-or-paren) | 82 | (const :tag "Unless at a word or parenthesis" word-or-paren) |
| 83 | (const :tag "Unless at a word, parenthesis, or punctuation." 'word-or-paren-or-punct)) | 83 | (const :tag "Unless at a word, parenthesis, or punctuation." |
| 84 | word-or-paren-or-punct)) | ||
| 84 | :version "28.1") | 85 | :version "28.1") |
| 85 | 86 | ||
| 86 | (defvar indent-line-ignored-functions '(indent-relative | 87 | (defvar indent-line-ignored-functions '(indent-relative |