all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp
@ 2016-03-08 13:42 Clément Pit--Claudel
  2016-03-08 16:11 ` Andreas Röhler
  2016-04-25 22:30 ` Lars Magne Ingebrigtsen
  0 siblings, 2 replies; 6+ messages in thread
From: Clément Pit--Claudel @ 2016-03-08 13:42 UTC (permalink / raw)
  To: 22942


[-- Attachment #1.1: Type: text/plain, Size: 518 bytes --]

The pass utility (a password manager which is pretty popular on Debian derivatives) uses two password prompts:

Enter password for [account]: 
Retype password for [account]: 

Comint only detects the first one as a password prompt, but shows the second one in clear. The fix is to add “Retype” to ‘comint-password-prompt-regexp’. “Type” could be a useful addition as well. It would also be nice to add “Master” to that list, so that “Master password:” is recognized as well.

Clément.



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp
  2016-03-08 13:42 bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp Clément Pit--Claudel
@ 2016-03-08 16:11 ` Andreas Röhler
  2016-04-25 22:31   ` Lars Magne Ingebrigtsen
  2016-04-25 22:30 ` Lars Magne Ingebrigtsen
  1 sibling, 1 reply; 6+ messages in thread
From: Andreas Röhler @ 2016-03-08 16:11 UTC (permalink / raw)
  To: 22942



On 08.03.2016 14:42, Clément Pit--Claudel wrote:
> The pass utility (a password manager which is pretty popular on Debian derivatives) uses two password prompts:
>
> Enter password for [account]:
> Retype password for [account]:
>
> Comint only detects the first one as a password prompt, but shows the second one in clear. The fix is to add “Retype” to ‘comint-password-prompt-regexp’. “Type” could be a useful addition as well. It would also be nice to add “Master” to that list, so that “Master password:” is recognized as well.
>
> Clément.
>
>

At my Xubuntu Emacs displays even first passwort following "sudo".

Thanks opening,

Andreas





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp
  2016-03-08 13:42 bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp Clément Pit--Claudel
  2016-03-08 16:11 ` Andreas Röhler
@ 2016-04-25 22:30 ` Lars Magne Ingebrigtsen
  2016-04-25 22:37   ` Clément Pit--Claudel
  1 sibling, 1 reply; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 2016-04-25 22:30 UTC (permalink / raw)
  To: Clément Pit--Claudel; +Cc: 22942

Clément Pit--Claudel <clement.pitclaudel@live.com> writes:

> The pass utility (a password manager which is pretty popular on Debian
> derivatives) uses two password prompts:
>
> Enter password for [account]: 
> Retype password for [account]: 

Ok; fixed on the trunk.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp
  2016-03-08 16:11 ` Andreas Röhler
@ 2016-04-25 22:31   ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 2016-04-25 22:31 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: 22942

Andreas Röhler <andreas.roehler@easy-emacs.de> writes:

> On 08.03.2016 14:42, Clément Pit--Claudel wrote:
>> The pass utility (a password manager which is pretty popular on
>> Debian derivatives) uses two password prompts:
>>
>> Enter password for [account]:
>> Retype password for [account]:
>>
>> Comint only detects the first one as a password prompt, but shows
>> the second one in clear. The fix is to add “Retype” to
>> ‘comint-password-prompt-regexp’. “Type” could be a useful addition
>> as well. It would also be nice to add “Master” to that list, so that
>> “Master password:” is recognized as well.
>>
>> Clément.
>>
>>
>
> At my Xubuntu Emacs displays even first passwort following "sudo".

What does the prompt look like?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp
  2016-04-25 22:30 ` Lars Magne Ingebrigtsen
@ 2016-04-25 22:37   ` Clément Pit--Claudel
  2017-06-14 23:59     ` npostavs
  0 siblings, 1 reply; 6+ messages in thread
From: Clément Pit--Claudel @ 2016-04-25 22:37 UTC (permalink / raw)
  To: Lars Magne Ingebrigtsen; +Cc: 22942


[-- Attachment #1.1: Type: text/plain, Size: 366 bytes --]

Yay, thanks!

On 2016-04-25 18:30, Lars Magne Ingebrigtsen wrote:
> Clément Pit--Claudel <clement.pitclaudel@live.com> writes:
> 
>> The pass utility (a password manager which is pretty popular on Debian
>> derivatives) uses two password prompts:
>>
>> Enter password for [account]: 
>> Retype password for [account]: 
> 
> Ok; fixed on the trunk.
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp
  2016-04-25 22:37   ` Clément Pit--Claudel
@ 2017-06-14 23:59     ` npostavs
  0 siblings, 0 replies; 6+ messages in thread
From: npostavs @ 2017-06-14 23:59 UTC (permalink / raw)
  To: Clément Pit--Claudel; +Cc: Lars Magne Ingebrigtsen, 22942

tags 22942 fixed
close 22942 26.1
quit

Clément Pit--Claudel <clement.pitclaudel@live.com> writes:

> Yay, thanks!
>
> On 2016-04-25 18:30, Lars Magne Ingebrigtsen wrote:
>> Clément Pit--Claudel <clement.pitclaudel@live.com> writes:
>> 
>>> The pass utility (a password manager which is pretty popular on Debian
>>> derivatives) uses two password prompts:
>>>
>>> Enter password for [account]: 
>>> Retype password for [account]: 
>> 
>> Ok; fixed on the trunk.
>> 

It was done in [1: 4f25bef332].

[1: 4f25bef332]: 2016-04-26 00:31:26 +0200
  Include "Retype" as a comint password prompt
  http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=4f25bef332264df2e4d096e529a63655fa03c5bc





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-06-14 23:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-08 13:42 bug#22942: emacs 25.0.90.1; "Retype" is missing from comint-password-prompt-regexp Clément Pit--Claudel
2016-03-08 16:11 ` Andreas Röhler
2016-04-25 22:31   ` Lars Magne Ingebrigtsen
2016-04-25 22:30 ` Lars Magne Ingebrigtsen
2016-04-25 22:37   ` Clément Pit--Claudel
2017-06-14 23:59     ` npostavs

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.