aboutsummaryrefslogtreecommitdiff
path: root/compat-27.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-01-04 18:46:44 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2023-01-04 18:46:44 +0100
commit3f2ec4de0f6fea6ec49554d2cb5cc92c7b472e2c (patch)
tree64a369c08e8dfdc8d9990a424e365794c948515e /compat-27.el
parent3034890f3db586b096daae69aca250037d52464b (diff)
Fix setq-local
Diffstat (limited to 'compat-27.el')
-rw-r--r--compat-27.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat-27.el b/compat-27.el
index ba3384a..433ab70 100644
--- a/compat-27.el
+++ b/compat-27.el
@@ -376,7 +376,7 @@ where USER is a valid login name."
(val (pop pairs)))
(unless (symbolp sym)
(error "Attempting to set a non-symbol: %s" (car pairs)))
- (push `(set (make-local-variable ,sym) ,val)
+ (push `(set (make-local-variable ',sym) ,val)
body)))
(cons 'progn (nreverse body))))