diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/epa.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/epa.el b/lisp/epa.el index bbfa2c188cc..2698b39ffe3 100644 --- a/lisp/epa.el +++ b/lisp/epa.el @@ -333,7 +333,10 @@ If ARG is non-nil, mark the key." (insert (propertize (concat " " (epa--button-key-text key)) - 'epa-key key)) + 'epa-key key + ;; Allow TAB to tab to the key. + 'button t + 'category t)) (insert "\n"))) (defun epa--list-keys (name secret &optional doc) |