]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve documentation of 'read-hide-char'
authorCharles A. Roelli <charles@aurox.ch>
Wed, 3 Oct 2018 17:59:34 +0000 (19:59 +0200)
committerCharles A. Roelli <charles@aurox.ch>
Wed, 3 Oct 2018 18:00:13 +0000 (20:00 +0200)
* src/minibuf.c (syms_of_minibuf) <Vread_hide_char>: Clarify
documentation and mention where else the variable is used.
* doc/lispref/minibuf.texi (Reading a Password): Add an index
entry for 'read-hide-char'.

doc/lispref/minibuf.texi
src/minibuf.c

index 2951ef5aaecb26bd303c71e5fb8a2b9f257130bb..97797d00096ef2e63542bb23915b13ec93ffa158 100644 (file)
@@ -2236,6 +2236,7 @@ Here is an example of using this function:
   To read a password to pass to another program, you can use the
 function @code{read-passwd}.
 
+@vindex read-hide-char
 @defun read-passwd prompt &optional confirm default
 This function reads a password, prompting with @var{prompt}.  It does
 not echo the password as the user types it; instead, it echoes
index 691fad07b790c84aac8cb7b1bc2c1d8d980b026f..f1bde913fc9a31a1fac279bfa74e900d35ae9be0 100644 (file)
@@ -2107,8 +2107,11 @@ properties.  */);
 
   DEFVAR_LISP ("read-hide-char", Vread_hide_char,
               doc: /* Whether to hide input characters in noninteractive mode.
-It must be a character, which will be used to mask the input
-characters.  This variable should never be set globally.  */);
+If non-nil, it must be a character, which will be used to mask the
+input characters.  This variable should never be set globally.
+
+This variable also overrides the default character that `read-passwd'
+uses to hide passwords.  */);
   Vread_hide_char = Qnil;
 
   defsubr (&Sactive_minibuffer_window);