mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Add entry for `minibuffer-prompt-properties'.
This commit is contained in:
parent
6e7d0ff7bc
commit
8f62f2b891
2 changed files with 25 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2000-11-22 Miles Bader <miles@gnu.org>
|
||||
|
||||
* cus-start.el: Add entry for `minibuffer-prompt-properties'.
|
||||
* simple.el (minibuffer-avoid-prompt): New function.
|
||||
|
||||
2000-11-21 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* Makefile.in (.SUFFIXES): Add .SUFFIXES.
|
||||
|
|
|
|||
|
|
@ -156,6 +156,26 @@
|
|||
;; minibuf.c
|
||||
(completion-auto-help minibuffer boolean)
|
||||
(enable-recursive-minibuffers minibuffer boolean)
|
||||
(minibuffer-prompt-properties
|
||||
minibuffer
|
||||
(list
|
||||
(checklist :inline t
|
||||
(const :tag "Read-Only"
|
||||
:doc "Prevent prompt from being modified"
|
||||
:format "%t%n%h"
|
||||
:inline t
|
||||
(read-only t))
|
||||
(const :tag "Inviolable"
|
||||
:doc "Prevent point from ever entering prompt"
|
||||
:format "%t%n%h"
|
||||
:inline t
|
||||
(point-entered minibuffer-avoid-prompt)))
|
||||
(repeat :inline t
|
||||
:tag "Other Properties"
|
||||
(list :inline t
|
||||
:format "%v"
|
||||
(symbol :tag "Property")
|
||||
(sexp :tag "Value")))))
|
||||
(minibuffer-auto-raise minibuffer boolean)
|
||||
;; msdos.c
|
||||
(dos-unsupported-char-glyph display integer)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue