diff options
| author | Juanma Barranquero | 2004-05-09 22:15:14 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2004-05-09 22:15:14 +0000 |
| commit | cba610754db9050f69e352fc0ffa92e5d2783295 (patch) | |
| tree | 71dae0d36ea633d5f66ba280328bdddc83e777a9 /lisp | |
| parent | 64ec7df91d02bda490b03807eac4b1249a26c97b (diff) | |
| download | emacs-cba610754db9050f69e352fc0ffa92e5d2783295.tar.gz emacs-cba610754db9050f69e352fc0ffa92e5d2783295.zip | |
(remove-overlays, read-passwd): Fix docstring.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/subr.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index f90b5f774cb..5453ee2e45b 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1280,7 +1280,7 @@ any other non-digit terminates the character code and is then used as input.")) | |||
| 1280 | (defun read-passwd (prompt &optional confirm default) | 1280 | (defun read-passwd (prompt &optional confirm default) |
| 1281 | "Read a password, prompting with PROMPT. Echo `.' for each character typed. | 1281 | "Read a password, prompting with PROMPT. Echo `.' for each character typed. |
| 1282 | End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | 1282 | End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. |
| 1283 | Optional argument CONFIRM, if non-nil, then read it twice to make sure. | 1283 | If optional CONFIRM is non-nil, read password twice to make sure. |
| 1284 | Optional DEFAULT is a default password to use instead of empty input." | 1284 | Optional DEFAULT is a default password to use instead of empty input." |
| 1285 | (if confirm | 1285 | (if confirm |
| 1286 | (let (success) | 1286 | (let (success) |
| @@ -1534,8 +1534,8 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there." | |||
| 1534 | 1534 | ||
| 1535 | (defun remove-overlays (&optional beg end name val) | 1535 | (defun remove-overlays (&optional beg end name val) |
| 1536 | "Clear BEG and END of overlays whose property NAME has value VAL. | 1536 | "Clear BEG and END of overlays whose property NAME has value VAL. |
| 1537 | Overlays might be moved and or split. | 1537 | Overlays might be moved and/or split. |
| 1538 | BEG and END default to the beginning resp. end of buffer." | 1538 | BEG and END default respectively to the beginning and end of buffer." |
| 1539 | (unless beg (setq beg (point-min))) | 1539 | (unless beg (setq beg (point-min))) |
| 1540 | (unless end (setq end (point-max))) | 1540 | (unless end (setq end (point-max))) |
| 1541 | (if (< end beg) | 1541 | (if (< end beg) |