* lisp/indent.el (tab-first-completion): Fix incorrect choices.

This commit is contained in:
Philipp Stephani 2022-01-14 20:49:35 +01:00
parent 5990148860
commit 7f36aca99d

View file

@ -77,10 +77,11 @@ This variable has no effect unless `tab-always-indent' is `complete'."
:group 'indent
:type '(choice
(const :tag "Always complete" nil)
(const :tag "Unless at the end of a line" 'eol)
(const :tag "Unless looking at a word" 'word)
(const :tag "Unless at a word or parenthesis" 'word-or-paren)
(const :tag "Unless at a word, parenthesis, or punctuation." 'word-or-paren-or-punct))
(const :tag "Unless at the end of a line" eol)
(const :tag "Unless looking at a word" word)
(const :tag "Unless at a word or parenthesis" word-or-paren)
(const :tag "Unless at a word, parenthesis, or punctuation."
word-or-paren-or-punct))
:version "28.1")
(defvar indent-line-ignored-functions '(indent-relative