* lisp/indent.el (tab-first-completion): Fix incorrect choices.
This commit is contained in:
parent
5990148860
commit
7f36aca99d
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue