diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/commands.texi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index 1964ec8e3fe..3ea6ea045eb 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi | |||
| @@ -2618,7 +2618,7 @@ then continues to wait for a valid input character, or keyboard-quit. | |||
| 2618 | @end defun | 2618 | @end defun |
| 2619 | 2619 | ||
| 2620 | @defun read-multiple-choice prompt choices | 2620 | @defun read-multiple-choice prompt choices |
| 2621 | Ask user a multiple choice question. @var{prompt} should be a string | 2621 | Ask user a multiple choice question. @var{prompt} should be a string |
| 2622 | that will be displayed as the prompt. | 2622 | that will be displayed as the prompt. |
| 2623 | 2623 | ||
| 2624 | @var{choices} is an alist where the first element in each entry is a | 2624 | @var{choices} is an alist where the first element in each entry is a |
| @@ -2636,6 +2636,10 @@ The return value is the matching value from @var{choices}. | |||
| 2636 | (?s "session only" "Accept this certificate this session only.") | 2636 | (?s "session only" "Accept this certificate this session only.") |
| 2637 | (?n "no" "Refuse to use this certificate, and close the connection."))) | 2637 | (?n "no" "Refuse to use this certificate, and close the connection."))) |
| 2638 | @end lisp | 2638 | @end lisp |
| 2639 | |||
| 2640 | The @code{read-multiple-choice-face} face is used to highlight the | ||
| 2641 | matching characters in the name string on graphical terminals. | ||
| 2642 | |||
| 2639 | @end defun | 2643 | @end defun |
| 2640 | 2644 | ||
| 2641 | @node Event Mod | 2645 | @node Event Mod |