diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/woman.el | 1 |
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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-01-29 Gerd Moellmann <gerd@gnu.org> | 6 | 2001-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 | |||
| 4411 | logging the message." | 4411 | logging 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 |