diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/skeleton.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/skeleton.el b/lisp/skeleton.el index cdfa3f72e49..eb5a17e417d 100644 --- a/lisp/skeleton.el +++ b/lisp/skeleton.el | |||
| @@ -324,7 +324,9 @@ When done with skeleton, but before going back to `_'-point call | |||
| 324 | 324 | ||
| 325 | (defun skeleton-read (prompt &optional initial-input recursive) | 325 | (defun skeleton-read (prompt &optional initial-input recursive) |
| 326 | "Function for reading a string from the minibuffer within skeletons. | 326 | "Function for reading a string from the minibuffer within skeletons. |
| 327 | PROMPT may contain a `%s' which will be replaced by `skeleton-subprompt'. | 327 | |
| 328 | PROMPT must be a string or a form that evaluates to a string. | ||
| 329 | It may contain a `%s' which will be replaced by `skeleton-subprompt'. | ||
| 328 | If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or | 330 | If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or |
| 329 | cons with index to insert before reading. If third arg RECURSIVE is non-`nil' | 331 | cons with index to insert before reading. If third arg RECURSIVE is non-`nil' |
| 330 | i.e. we are handling the iterator of a subskeleton, returns empty string if | 332 | i.e. we are handling the iterator of a subskeleton, returns empty string if |