summaryrefslogtreecommitdiff
path: root/lisp/emulation/edt.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-12-06 08:54:50 +0100
committerStefan Kangas <stefan@marxist.se>2020-12-06 08:54:50 +0100
commit79d287c7b51758542798985e6b1c7b24b0038619 (patch)
tree1d82d9c33aad2eee41397516df4142ab986fd9f0 /lisp/emulation/edt.el
parent7c113c344e19faece88e6be1bf55376d6f35cfb2 (diff)
downloademacs-79d287c7b51758542798985e6b1c7b24b0038619.tar.gz
emacs-79d287c7b51758542798985e6b1c7b24b0038619.tar.bz2
emacs-79d287c7b51758542798985e6b1c7b24b0038619.zip
Prefer setq-local in emulation/*.el
* lisp/emulation/edt.el (edt-select-mode): * lisp/emulation/viper-cmd.el (viper-refresh-mode-line): (viper-minibuffer-setup-sentinel): * lisp/emulation/viper.el (viper-comint-mode-hook): Prefer setq-local.
Diffstat (limited to 'lisp/emulation/edt.el')
-rw-r--r--lisp/emulation/edt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index b29ad7702ef..f61de9208d1 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -788,7 +788,7 @@ Argument NUM is the number of lines to delete."
In select mode, selected text is highlighted."
(if arg
(progn
- (set (make-local-variable 'edt-select-mode) 'edt-select-mode-current)
+ (setq-local edt-select-mode 'edt-select-mode-current)
(setq rect-start-point (window-point)))
(progn
(kill-local-variable 'edt-select-mode)))