mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-28 01:00:52 -07:00
lisp/outline.el (outline-minor-mode-cycle-filter): Don't quote lambda
This commit is contained in:
parent
f8b9d80ec6
commit
05520a2e74
1 changed files with 2 additions and 2 deletions
|
|
@ -202,10 +202,10 @@ specific positions on the heading, like only at the line's beginning or
|
|||
line's end. This allows these keys to be bound to their usual commands,
|
||||
as determined by the major mode, elsewhere on the heading lines.
|
||||
This option is only in effect when `outline-minor-mode-cycle' is non-nil."
|
||||
:type '(choice (const :tag "Everywhere" nil)
|
||||
:type `(choice (const :tag "Everywhere" nil)
|
||||
(const :tag "At line beginning" bolp)
|
||||
(const :tag "Not at line beginning"
|
||||
(lambda () (not (bolp))))
|
||||
,(lambda () (not (bolp))))
|
||||
(const :tag "At line end" eolp)
|
||||
(function :tag "Custom filter function"))
|
||||
:version "28.1")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue