]> git.eshelyaron.com Git - emacs.git/commitdiff
Add "Enter Auth" prompt handling for OpenVPN (Bug#35724)
authorMatthew Bauer <mjbauer95@gmail.com>
Mon, 13 May 2019 22:39:32 +0000 (18:39 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Fri, 24 May 2019 11:33:01 +0000 (07:33 -0400)
* lisp/comint.el (comint-password-prompt-regexp): Allow "Enter Auth"
at the beginning.

lisp/comint.el
test/lisp/comint-tests.el

index 3939371ab857c9df63efe2406eefb60bc437cca9..b6ed199327e80a7d8aa760cdabdef5de77dbf376 100644 (file)
@@ -349,13 +349,14 @@ This variable is buffer-local."
 ;; Ubuntu's sudo prompts like `[sudo] password for user:'
 ;; Some implementations of passwd use "Password (again)" as the 2nd prompt.
 ;; Something called "perforce" uses "Enter password:".
-;; See M-x comint-testsuite--test-comint-password-prompt-regexp.
+;; OpenVPN prints a prompt like: "Enter Auth Password:".
+;; See ert test `comint-test-password-regexp'.
 (defcustom comint-password-prompt-regexp
   (concat
    "\\(^ *\\|"
    (regexp-opt
     '("Enter" "enter" "Enter same" "enter same" "Enter the" "enter the"
-      "Old" "old" "New" "new" "'s" "login"
+      "Enter Auth" "enter auth" "Old" "old" "New" "new" "'s" "login"
       "Kerberos" "CVS" "UNIX" " SMB" "LDAP" "PEM" "SUDO"
       "[sudo]" "Repeat" "Bad" "Retype")
     t)
index 49e59c526f44347153e19cc9bd0607eb52425901..0d2d648bbaeb5710b79926102fc3dc83156634f9 100644 (file)
@@ -39,6 +39,7 @@
     "[sudo] user 的密码:" ; localized
     "Password (again):"
     "Enter password:"
+    "Enter Auth Password:" ; OpenVPN (Bug#35724)
     "Mot de Passe :" ; localized (Bug#29729)
     "Passwort:") ; localized
   "List of strings that should match `comint-password-prompt-regexp'.")