summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-12-14 15:09:14 +0100
committerStefan Kangas <stefan@marxist.se>2020-12-14 15:11:05 +0100
commitf1dae2551c9b30f1f1333416df195b0907c54f4f (patch)
tree0238e1d6c2e7d4b9f5d5057f2aee71a319ab1d29 /lisp/cedet/semantic
parentc9758ba48a805406ddd538aac33354fa400ac14a (diff)
downloademacs-f1dae2551c9b30f1f1333416df195b0907c54f4f.tar.gz
emacs-f1dae2551c9b30f1f1333416df195b0907c54f4f.tar.bz2
emacs-f1dae2551c9b30f1f1333416df195b0907c54f4f.zip
Prefer setq to set+quote
* lisp/cedet/semantic/senator.el (senator-lazy-highlight-update): * lisp/emulation/edt.el (edt-find, edt-restore-key) (edt-remember): * lisp/eshell/em-ls.el (eshell-ls--insert-directory): * lisp/net/tramp-sh.el (tramp-sh-handle-write-region): * lisp/progmodes/hideif.el (hide-ifdef-mode): * test/lisp/url/url-future-tests.el (url-future-tests): Prefer setq to set+quote.
Diffstat (limited to 'lisp/cedet/semantic')
-rw-r--r--lisp/cedet/semantic/senator.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/senator.el b/lisp/cedet/semantic/senator.el
index 49c1933508f..d21350749ba 100644
--- a/lisp/cedet/semantic/senator.el
+++ b/lisp/cedet/semantic/senator.el
@@ -810,7 +810,7 @@ if available."
(defun senator-lazy-highlight-update ()
"Force lazy highlight update."
(lazy-highlight-cleanup t)
- (set 'isearch-lazy-highlight-last-string nil)
+ (setq isearch-lazy-highlight-last-string nil)
(setq isearch-adjusted t)
(isearch-update))