Explorar o código

Merge pull request #17 from HyperSuperMetaCtrl/fix_string-match_proc_filter_master_password

Fix string-match arm in proc filter
Sean Farley %!s(int64=3) %!d(string=hai) anos
pai
achega
55160e2396
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      bitwarden.el

+ 1 - 1
bitwarden.el

@@ -157,7 +157,7 @@ If PRINT-MESSAGE is set then messages are printed to minibuffer."
       (process-send-string proc (concat bitwarden-user "\n"))))
 
   ;; read master password
-  (when (string-match "^? Master password:" string)
+  (when (string-match "^? Master password:.*" string)
     (process-send-string
      proc (concat (read-passwd "Bitwarden master password: ") "\n")))