branch: externals/dtache commit 09d378e50ad614409e847a4911177db78273c6e7 Author: Niklas Eklund <niklas.ekl...@posteo.net> Commit: Niklas Eklund <niklas.ekl...@posteo.net>
Fix read-only problematic The dtache-log-mode enables read-only mode, so we need to disable read-only in case the buffer is re-used. --- dtache.el | 1 + 1 file changed, 1 insertion(+) diff --git a/dtache.el b/dtache.el index 9ec22552dc..c65c89e9bf 100644 --- a/dtache.el +++ b/dtache.el @@ -263,6 +263,7 @@ (if (file-exists-p file-path) (progn (with-current-buffer (get-buffer-create buffer-name) + (setq-local buffer-read-only nil) (insert (dtache-session-output session)) (setq-local default-directory (dtache--session-working-directory session)) (dtache-log-mode)