Trivial bytecomp.el fix for file-local buffer-read-only.
* lisp/emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file local setting of buffer-read-only to the input buffer. Fixes: debbugs:10419
This commit is contained in:
parent
98cc61deb6
commit
7d5944b986
2 changed files with 6 additions and 1 deletions
|
@ -1745,7 +1745,9 @@ The value is non-nil if there were no errors, nil if errors."
|
|||
(enable-local-eval nil))
|
||||
;; Arg of t means don't alter enable-local-variables.
|
||||
(normal-mode t)
|
||||
(setq filename buffer-file-name))
|
||||
;; There may be a file local variable setting (bug#10419).
|
||||
(setq buffer-read-only nil
|
||||
filename buffer-file-name))
|
||||
;; Set the default directory, in case an eval-when-compile uses it.
|
||||
(setq default-directory (file-name-directory filename)))
|
||||
;; Check if the file's local variables explicitly specify not to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue