Skip to content

Commit 2d77b22

Browse files
authored
Merge pull request kaiwk#13 from pengpengxp/master
replace read-string with read-passwd while input passwd
2 parents b91becb + 2ceca74 commit 2d77b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ VALUE should be the referer."
155155
When ACCOUNT or PASSWORD is empty string it will show a prompt."
156156
(when (or (string-empty-p account) (string-empty-p password))
157157
(setq account (read-string "account: "))
158-
(setq password (read-string "password: ")))
158+
(setq password (read-passwd "password: ")))
159159
(leetcode-global-loading-mode t)
160160
(request-deferred
161161
leetcode--url-login

0 commit comments

Comments
 (0)