[PATCH] emacs: Don't require a matching password in password-store-edit

sacredirritant sacredirritant at gmail.com
Wed May 8 19:07:16 UTC 2024


This aligns password-store-edit with pass edit.
---
 contrib/emacs/CHANGELOG.md      | 4 ++++
 contrib/emacs/password-store.el | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/contrib/emacs/CHANGELOG.md b/contrib/emacs/CHANGELOG.md
index e15414f..4fc7e0f 100644
--- a/contrib/emacs/CHANGELOG.md
+++ b/contrib/emacs/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 2.3.3
+
+* (bugfix) Don't require a matching password in password-store-edit.
+
 # 2.3.2
 
 * (bugfix) Ensure the system clipboard is cleared after
diff --git a/contrib/emacs/password-store.el b/contrib/emacs/password-store.el
index c7cc991..759f170 100644
--- a/contrib/emacs/password-store.el
+++ b/contrib/emacs/password-store.el
@@ -4,7 +4,7 @@
 
 ;; Author: Svend Sorensen <svend at svends.net>
 ;; Maintainer: Tino Calancha <tino.calancha at gmail.com>
-;; Version: 2.3.2
+;; Version: 2.3.3
 ;; URL: https://www.passwordstore.org/
 ;; Package-Requires: ((emacs "26.1") (with-editor "2.5.11"))
 ;; SPDX-License-Identifier: GPL-3.0-or-later
@@ -236,7 +236,7 @@ ENTRY is the name of a password-store entry."
 ;;;###autoload
 (defun password-store-edit (entry)
   "Edit password for ENTRY."
-  (interactive (list (password-store--completing-read t)))
+  (interactive (list (password-store--completing-read)))
   (password-store--run-edit entry))
 
 ;;;###autoload
-- 
2.42.0



More information about the Password-Store mailing list