changeset 55477:e191e6d1554e

(remove-overlays, read-passwd): Fix docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 09 May 2004 22:15:14 +0000
parents ec3fac03b44a
children c6ec5bf17a29
files lisp/subr.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Sun May 09 21:36:45 2004 +0000
+++ b/lisp/subr.el	Sun May 09 22:15:14 2004 +0000
@@ -1280,7 +1280,7 @@
 (defun read-passwd (prompt &optional confirm default)
   "Read a password, prompting with PROMPT.  Echo `.' for each character typed.
 End with RET, LFD, or ESC.  DEL or C-h rubs out.  C-u kills line.
-Optional argument CONFIRM, if non-nil, then read it twice to make sure.
+If optional CONFIRM is non-nil, read password twice to make sure.
 Optional DEFAULT is a default password to use instead of empty input."
   (if confirm
       (let (success)
@@ -1534,8 +1534,8 @@
 
 (defun remove-overlays (&optional beg end name val)
   "Clear BEG and END of overlays whose property NAME has value VAL.
-Overlays might be moved and or split.
-BEG and END default to the beginning resp. end of buffer."
+Overlays might be moved and/or split.
+BEG and END default respectively to the beginning and end of buffer."
   (unless beg (setq beg (point-min)))
   (unless end (setq end (point-max)))
   (if (< end beg)