aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2007-02-22 00:30:41 +0000
committerKim F. Storm2007-02-22 00:30:41 +0000
commit135e3b47ec43ea6c2d83c460f43fbacb8b8257e2 (patch)
tree604dc1519f968928436a7f453deb06cf3b85481a
parentd3fc66fb32818da0871c8cd88cf0d67ecafeedeb (diff)
downloademacs-135e3b47ec43ea6c2d83c460f43fbacb8b8257e2.tar.gz
emacs-135e3b47ec43ea6c2d83c460f43fbacb8b8257e2.zip
(User Interface, Basic Types): Document need to put some
text before the %v escape in :format string in editable-field widget.
-rw-r--r--man/widget.texi9
1 files changed, 8 insertions, 1 deletions
diff --git a/man/widget.texi b/man/widget.texi
index 22e5ce13631..086b9f69cf3 100644
--- a/man/widget.texi
+++ b/man/widget.texi
@@ -228,6 +228,10 @@ separating text after the field. If you don't include the
228@code{:size} keyword, the field will extend to the end of the 228@code{:size} keyword, the field will extend to the end of the
229line, and the terminating newline will provide separation after. 229line, and the terminating newline will provide separation after.
230 230
231@strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape
232must be preceeded by some other text in the @code{:format} string
233(if specified).
234
231The editing text fields are highlighted with the 235The editing text fields are highlighted with the
232@code{widget-field-face} face, making them easy to find. 236@code{widget-field-face} face, making them easy to find.
233 237
@@ -529,6 +533,9 @@ The text inside will be displayed with the face specified by
529This will be replaced with the buffer representation of the widget's 533This will be replaced with the buffer representation of the widget's
530value. What this is depends on the widget type. 534value. What this is depends on the widget type.
531 535
536@strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape
537must be preceeded by some other text in the format string (if specified).
538
532@item %d 539@item %d
533Insert the string specified by @code{:doc} here. 540Insert the string specified by @code{:doc} here.
534 541
@@ -1342,7 +1349,7 @@ where each @var{component} must be a widget type. Each component widget
1342will be displayed in the buffer, and will be editable by the user. 1349will be displayed in the buffer, and will be editable by the user.
1343 1350
1344@deffn Widget cons 1351@deffn Widget cons
1345The value of a @code{cons} widget must be a cons-cell whose @sc{car} 1352The value of a @code{cons} widget must be a cons-cell whose @sc{car}
1346and @sc{cdr} have two specified types. It uses this syntax: 1353and @sc{cdr} have two specified types. It uses this syntax:
1347 1354
1348@example 1355@example