]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix problem with `epa-list-keys' bugging out
authorStephen Berman <stephen.berman@gmx.net>
Mon, 18 Jan 2021 16:29:41 +0000 (17:29 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 18 Jan 2021 16:29:41 +0000 (17:29 +0100)
* lisp/epa.el (epa--list-keys): Partially revert 517285f7cae which
removed the wrong property (bug#44134).

lisp/epa.el

index db2b12714733eaa08775f5913011f62c70e50eb6..e909b1d8698075ec1f0f5c6432483cb6667483a9 100644 (file)
@@ -359,8 +359,8 @@ DOC is documentation text to insert at the start."
 
     ;; Find the end of the documentation text at the start.
     ;; Set POINT to where it ends, or nil if ends at eob.
-    (unless (get-text-property point 'epa-list-keys)
-      (setq point (next-single-property-change point 'epa-list-keys)))
+    (unless (get-text-property point 'epa-key)
+      (setq point (next-single-property-change point 'epa-key)))
 
     ;; If caller specified documentation text for that, replace the old
     ;; documentation text (if any) with what was specified.
@@ -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-list-keys)
+                    (or (next-single-property-change point 'epa-key)
                         (point-max)))
       (goto-char point))