aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-01-29 16:24:49 +0000
committerEli Zaretskii2001-01-29 16:24:49 +0000
commite2a802843743472fb362123d0185b2ee8c38d6a9 (patch)
treec6b8d83b08d6afaa09d5412193a579fd685d75a7
parent005913e452c6d6ea13028609651f9b06e3d55249 (diff)
downloademacs-e2a802843743472fb362123d0185b2ee8c38d6a9.tar.gz
emacs-e2a802843743472fb362123d0185b2ee8c38d6a9.zip
(WoMan-log-1): Make the log buffer writable. From
Markus Rost <rost@math.ohio-state.edu>.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/woman.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b5e2a39bb43..f5a003ca777 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * woman.el (WoMan-log-1): Make the log buffer writable. From
4 Markus Rost <rost@math.ohio-state.edu>.
5
12001-01-29 Gerd Moellmann <gerd@gnu.org> 62001-01-29 Gerd Moellmann <gerd@gnu.org>
2 7
3 * imenu.el (imenu-syntax-alist): Add autoload cookie for 8 * 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
4411logging the message." 4411logging the message."
4412 (save-excursion 4412 (save-excursion
4413 (set-buffer (get-buffer-create "*WoMan-Log*")) 4413 (set-buffer (get-buffer-create "*WoMan-Log*"))
4414 (setq buffer-read-only nil)
4414 (goto-char (point-max)) 4415 (goto-char (point-max))
4415 (or end (insert " ")) (insert string "\n") 4416 (or end (insert " ")) (insert string "\n")
4416 (if end 4417 (if end