Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cba61075
Commit
cba61075
authored
May 09, 2004
by
Juanma Barranquero
Browse files
(remove-overlays, read-passwd): Fix docstring.
parent
64ec7df9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/subr.el
lisp/subr.el
+3
-3
No files found.
lisp/subr.el
View file @
cba61075
...
...
@@ -1280,7 +1280,7 @@ any other non-digit terminates the character code and is then used as input."))
(
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.
O
ptional
argument
CONFIRM
,
i
f
non-nil,
then read it
twice to make sure.
If o
ptional CONFIRM i
s
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 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
(
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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment