mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Don't enable any local variables while building packages
See bbatsov/zenburn-emacs#107
This commit is contained in:
parent
003182ede2
commit
53c0639d2a
1 changed files with 1 additions and 1 deletions
|
@ -750,7 +750,7 @@ FILES is a list of (SOURCE . DEST) relative filepath pairs."
|
|||
(when (file-exists-p pkg-target)
|
||||
(delete-file pkg-target t))
|
||||
(copy-file pkg-source pkg-target)
|
||||
(let ((enable-local-variables :safe)
|
||||
(let ((enable-local-variables nil)
|
||||
(make-backup-files nil))
|
||||
(with-current-buffer (find-file pkg-target)
|
||||
(pb/update-or-insert-version version)
|
||||
|
|
Loading…
Reference in a new issue