diff options
| -rw-r--r-- | lisp/epa-file.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/epa-file.el b/lisp/epa-file.el index e3c4a83deb8..558048403ce 100644 --- a/lisp/epa-file.el +++ b/lisp/epa-file.el | |||
| @@ -285,10 +285,13 @@ If no one is selected, symmetric encryption will be performed. " | |||
| 285 | (interactive) | 285 | (interactive) |
| 286 | (make-local-variable 'epa-file-encrypt-to) | 286 | (make-local-variable 'epa-file-encrypt-to) |
| 287 | (setq epa-file-encrypt-to | 287 | (setq epa-file-encrypt-to |
| 288 | (mapcar | ||
| 289 | (lambda (key) | ||
| 290 | (epg-sub-key-id (car (epg-key-sub-key-list key)))) | ||
| 288 | (epa-select-keys | 291 | (epa-select-keys |
| 289 | (epg-make-context) | 292 | (epg-make-context) |
| 290 | "Select recipents for encryption. | 293 | "Select recipents for encryption. |
| 291 | If no one is selected, symmetric encryption will be performed. "))) | 294 | If no one is selected, symmetric encryption will be performed. ")))) |
| 292 | 295 | ||
| 293 | ;;;###autoload | 296 | ;;;###autoload |
| 294 | (defun epa-file-enable () | 297 | (defun epa-file-enable () |