diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-01-18 17:35:55 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-01-18 17:35:55 +0100 |
commit | f9dab612726148919812ec4ff804df6120022407 (patch) | |
tree | 524ea907ba5f6f4fc371c3657f59c0e6a403b286 /lisp/epa.el | |
parent | 455f08c095c5c1606142144508fc91eab0860a6a (diff) | |
download | emacs-f9dab612726148919812ec4ff804df6120022407.tar.gz emacs-f9dab612726148919812ec4ff804df6120022407.tar.bz2 emacs-f9dab612726148919812ec4ff804df6120022407.zip |
Don't double up keys in epa--list-keys
* lisp/epa.el (epa--list-keys): Delete the list keys before
redisplaying (bug#44134).
Diffstat (limited to 'lisp/epa.el')
-rw-r--r-- | lisp/epa.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/epa.el b/lisp/epa.el index e909b1d8698..197cd92f977 100644 --- a/lisp/epa.el +++ b/lisp/epa.el @@ -374,7 +374,7 @@ DOC is documentation text to insert at the start." ;; Now delete the key description text, if any. (when point (delete-region point - (or (next-single-property-change point 'epa-key) + (or (next-single-property-change point 'epa-list-keys) (point-max))) (goto-char point)) |