From 65ea0ae7b59a31359300e5d7d035ac235bcc5bf0 Mon Sep 17 00:00:00 2001 From: tsuchiya Date: Fri, 9 Nov 2001 00:34:03 +0000 Subject: [PATCH] (infohack-texi-format): To process write-protected files safely, make this buffer be writable after `find-file' --- ChangeLog | 10 ++++++++-- texi/infohack.el | 1 + 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 632fe99..e480d9d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-11-09 TSUCHIYA Masatoshi + + * texi/infohack.el (infohack-texi-format): To process + write-protected files safely, make this buffer be writable after + `find-file' + 2001-11-06 Katsumi Yamaoka * lisp/nnheader.el (customize-save-variable): Defun-maybe. @@ -17,7 +23,7 @@ * lisp/message.el (rfc822-goto-eoh): Remove. -2001-10-19 Kai Gro,A_(Bjohann +2001-10-19 Kai Gro.AN_johann From Frank Schmitt . * make-x.bat: Use correct directory structure for XEmacs on Windows. @@ -115,7 +121,7 @@ * configure.in: Generate texi/ps/Makefile. -2001-09-21 Kai Gro,A_(Bjohann +2001-09-21 Kai GroN_johann * make.bat: Use parameter "/copy" rather than "copy" for increased dwimishness for old-time DOS users. diff --git a/texi/infohack.el b/texi/infohack.el index 6485640..cd9774e 100644 --- a/texi/infohack.el +++ b/texi/infohack.el @@ -79,6 +79,7 @@ (condition-case err (progn (find-file file) + (setq buffer-read-only nil) (buffer-disable-undo (current-buffer)) (if (boundp 'MULE) (setq output-coding-system file-coding-system) -- 1.7.10.4