aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--contrib/emacs/password-store.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/emacs/password-store.el b/contrib/emacs/password-store.el
index ced7767..c332c2f 100644
--- a/contrib/emacs/password-store.el
+++ b/contrib/emacs/password-store.el
@@ -91,9 +91,10 @@ outputs error message on failure."
entry
(number-to-string password-length)))
-(defun password-store--run-remove (entry &optional force)
+(defun password-store--run-remove (entry &optional recursive)
(password-store--run "remove"
- (if force "--force")
+ "--force"
+ (if recursive "--recursive")
entry))
(defun password-store--run-rename (entry new-entry &optional force)