diff options
| -rw-r--r-- | lisp/skeleton.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/skeleton.el b/lisp/skeleton.el index 47b4f7f9fe8..31d1195409f 100644 --- a/lisp/skeleton.el +++ b/lisp/skeleton.el | |||
| @@ -321,7 +321,7 @@ When done with skeleton, but before going back to `_'-point call | |||
| 321 | (if skeleton-point | 321 | (if skeleton-point |
| 322 | (goto-char skeleton-point)))))) | 322 | (goto-char skeleton-point)))))) |
| 323 | 323 | ||
| 324 | (defun skeleton-read (PROMPT &optional initial-input recursive) | 324 | (defun skeleton-read (prompt &optional initial-input recursive) |
| 325 | "Function for reading a string from the minibuffer within skeletons. | 325 | "Function for reading a string from the minibuffer within skeletons. |
| 326 | PROMPT may contain a `%s' which will be replaced by `skeleton-subprompt'. | 326 | PROMPT may contain a `%s' which will be replaced by `skeleton-subprompt'. |
| 327 | If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or | 327 | If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or |
| @@ -362,7 +362,7 @@ automatically, and you are prompted to fill in the variable parts."))) | |||
| 362 | (equal prompt initial-input) | 362 | (equal prompt initial-input) |
| 363 | (equal prompt (car-safe initial-input)))) | 363 | (equal prompt (car-safe initial-input)))) |
| 364 | (signal 'quit t) | 364 | (signal 'quit t) |
| 365 | str)) | 365 | prompt)) |
| 366 | 366 | ||
| 367 | (defun skeleton-internal-list (skeleton &optional str recursive) | 367 | (defun skeleton-internal-list (skeleton &optional str recursive) |
| 368 | (let* ((start (save-excursion (beginning-of-line) (point))) | 368 | (let* ((start (save-excursion (beginning-of-line) (point))) |