diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-02-08 00:25:16 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-02-08 00:25:16 +0100 |
commit | 7d4d577ed14fb2519ea2eaecb11c8ecff658f147 (patch) | |
tree | f19b3bfdc2c8e8b748e53fb748450334a02dace3 /lisp/epa.el | |
parent | 651aefa31246a786891e2e743800dbf753223928 (diff) | |
download | emacs-7d4d577ed14fb2519ea2eaecb11c8ecff658f147.tar.gz emacs-7d4d577ed14fb2519ea2eaecb11c8ecff658f147.tar.bz2 emacs-7d4d577ed14fb2519ea2eaecb11c8ecff658f147.zip |
Prefer setq-local in a few more places
* lisp/calc/calc-embed.el (calc-embedded-make-info):
* lisp/calc/calcalg2.el (calcFunc-integ):
* lisp/comint.el (comint-mode):
* lisp/epa.el (epa--list-keys, epa--show-key):
* lisp/epg.el (epg--start):
* lisp/vc/ediff-util.el (ediff-activate-mark): Prefer setq-local.
Diffstat (limited to 'lisp/epa.el')
-rw-r--r-- | lisp/epa.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/epa.el b/lisp/epa.el index 197cd92f977..572c947e4b2 100644 --- a/lisp/epa.el +++ b/lisp/epa.el @@ -379,8 +379,7 @@ DOC is documentation text to insert at the start." (goto-char point)) (epa--insert-keys (epg-list-keys context name secret))) - (make-local-variable 'epa-list-keys-arguments) - (setq epa-list-keys-arguments (list name secret)) + (setq-local epa-list-keys-arguments (list name secret)) (goto-char (point-min)) (pop-to-buffer (current-buffer))) @@ -500,8 +499,7 @@ If SECRET is non-nil, list secret keys instead of public keys." (format "*Key*%s" (epg-sub-key-id primary-sub-key))))) (set-buffer (cdr entry)) (epa-key-mode) - (make-local-variable 'epa-key) - (setq epa-key key) + (setq-local epa-key key) (erase-buffer) (setq pointer (epg-key-user-id-list key)) (while pointer |