diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-04 18:46:44 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-04 18:46:44 +0100 |
| commit | 3f2ec4de0f6fea6ec49554d2cb5cc92c7b472e2c (patch) | |
| tree | 64a369c08e8dfdc8d9990a424e365794c948515e /compat-27.el | |
| parent | 3034890f3db586b096daae69aca250037d52464b (diff) | |
Fix setq-local
Diffstat (limited to 'compat-27.el')
| -rw-r--r-- | compat-27.el | 2 |
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)))) |
