diff options
| author | Kim F. Storm | 2007-02-22 00:30:41 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2007-02-22 00:30:41 +0000 |
| commit | 135e3b47ec43ea6c2d83c460f43fbacb8b8257e2 (patch) | |
| tree | 604dc1519f968928436a7f453deb06cf3b85481a | |
| parent | d3fc66fb32818da0871c8cd88cf0d67ecafeedeb (diff) | |
| download | emacs-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.texi | 9 |
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 |
| 229 | line, and the terminating newline will provide separation after. | 229 | line, and the terminating newline will provide separation after. |
| 230 | 230 | ||
| 231 | @strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape | ||
| 232 | must be preceeded by some other text in the @code{:format} string | ||
| 233 | (if specified). | ||
| 234 | |||
| 231 | The editing text fields are highlighted with the | 235 | The 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 | |||
| 529 | This will be replaced with the buffer representation of the widget's | 533 | This will be replaced with the buffer representation of the widget's |
| 530 | value. What this is depends on the widget type. | 534 | value. What this is depends on the widget type. |
| 531 | 535 | ||
| 536 | @strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape | ||
| 537 | must be preceeded by some other text in the format string (if specified). | ||
| 538 | |||
| 532 | @item %d | 539 | @item %d |
| 533 | Insert the string specified by @code{:doc} here. | 540 | Insert 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 | |||
| 1342 | will be displayed in the buffer, and will be editable by the user. | 1349 | will be displayed in the buffer, and will be editable by the user. |
| 1343 | 1350 | ||
| 1344 | @deffn Widget cons | 1351 | @deffn Widget cons |
| 1345 | The value of a @code{cons} widget must be a cons-cell whose @sc{car} | 1352 | The value of a @code{cons} widget must be a cons-cell whose @sc{car} |
| 1346 | and @sc{cdr} have two specified types. It uses this syntax: | 1353 | and @sc{cdr} have two specified types. It uses this syntax: |
| 1347 | 1354 | ||
| 1348 | @example | 1355 | @example |