Browse Source

Fix invalid function definition

Docstring and first form of BODY were swapped.
gh-b4c3bd91/13/juergenhoetzel/fix-swapped-docstring
Juergen Hoetzel 6 years ago
parent
commit
dd487a0e22
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pass.el

+ 2
- 2
pass.el View File

@ -176,17 +176,17 @@ Similar to `save-excursion' but only restore the point."
(pass-display-data))))
(defun pass-insert ()
(interactive)
"Insert an entry to the password-store.
The password is read from user input."
(interactive)
(call-interactively #'password-store-insert)
(pass-update-buffer))
(defun pass-insert-generated ()
(interactive)
"Insert an entry to the password-store.
Use a generated password instead of reading the password from
user input."
(interactive)
(call-interactively #'password-store-generate)
(pass-update-buffer))


Loading…
Cancel
Save