diff options
author | Svend Sorensen <svend@ciffer.net> | 2014-05-05 11:52:34 -0700 |
---|---|---|
committer | Svend Sorensen <svend@ciffer.net> | 2014-05-05 11:52:34 -0700 |
commit | 0e4a5436ad9751855e0bb8763cbcc5d4e525e2c6 (patch) | |
tree | 0881f13df0c2849f2b13783f8381be37d574a7b3 | |
parent | 36d392a95f1154e0e203b45baa618f9ba93248a2 (diff) | |
download | pass-0e4a5436ad9751855e0bb8763cbcc5d4e525e2c6.tar.gz pass-0e4a5436ad9751855e0bb8763cbcc5d4e525e2c6.tar.bz2 pass-0e4a5436ad9751855e0bb8763cbcc5d4e525e2c6.zip |
password-length is already a number
Diffstat (limited to '')
-rw-r--r-- | contrib/emacs/password-store.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/emacs/password-store.el b/contrib/emacs/password-store.el index c332c2f..9348bf8 100644 --- a/contrib/emacs/password-store.el +++ b/contrib/emacs/password-store.el @@ -192,7 +192,7 @@ Default PASSWORD-LENGTH is `password-store-password-length'." (unless password-length (setq password-length password-store-password-length)) ;; A message with the output of the command is not printed because ;; the output contains the password. - (password-store--run-generate entry (number-to-string password-length) t) + (password-store--run-generate entry password-length t) nil) ;;;###autoload |