From: Eli Zaretskii Date: Mon, 29 Jan 2001 16:24:49 +0000 (+0000) Subject: (WoMan-log-1): Make the log buffer writable. From X-Git-Tag: emacs-pretest-21.0.97~41 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e2a802843743472fb362123d0185b2ee8c38d6a9;p=emacs.git (WoMan-log-1): Make the log buffer writable. From Markus Rost . --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b5e2a39bb43..f5a003ca777 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-01-29 Eli Zaretskii + + * woman.el (WoMan-log-1): Make the log buffer writable. From + Markus Rost . + 2001-01-29 Gerd Moellmann * imenu.el (imenu-syntax-alist): Add autoload cookie for diff --git a/lisp/woman.el b/lisp/woman.el index e98ab8255aa..1a3d7e8b75c 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -4411,6 +4411,7 @@ If optional argument END is non-nil then make buffer read-only after logging the message." (save-excursion (set-buffer (get-buffer-create "*WoMan-Log*")) + (setq buffer-read-only nil) (goto-char (point-max)) (or end (insert " ")) (insert string "\n") (if end