diff options
| author | Richard M. Stallman | 2002-05-04 14:17:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-05-04 14:17:21 +0000 |
| commit | d7f5c8f9d1490f8ff7796c674f5b7e9cd7fde0ab (patch) | |
| tree | d21d42f610b5bed006df5514f8d8a61ff08b30a4 | |
| parent | 287e56d1d639478169747ebf5476fad45df08d04 (diff) | |
| download | emacs-d7f5c8f9d1490f8ff7796c674f5b7e9cd7fde0ab.tar.gz emacs-d7f5c8f9d1490f8ff7796c674f5b7e9cd7fde0ab.zip | |
(mpuz-switch-to-window): Set buffer-read-only directly.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/play/mpuz.el | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8e62b8ac391..e7cfe1c6adc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,9 +1,20 @@ | |||
| 1 | 2002-05-04 Daniel Pfeiffer <occitan@esperanto.org> | ||
| 2 | |||
| 3 | * play/mpuz.el (mpuz-switch-to-window): Set buffer-read-only directly. | ||
| 4 | |||
| 1 | 2002-05-04 Kim F. Storm <storm@cua.dk> | 5 | 2002-05-04 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * cus-edit.el (custom-buffer-verbose-help): New variable. | 7 | * cus-edit.el (custom-buffer-verbose-help): New variable. |
| 4 | (custom-buffer-create-internal): Remove verbose introduction | 8 | (custom-buffer-create-internal): Remove verbose introduction |
| 5 | in customization buffer when it is nil. | 9 | in customization buffer when it is nil. |
| 6 | 10 | ||
| 11 | 2002-05-03 Dave Love <fx@gnu.org> | ||
| 12 | |||
| 13 | * international/mule-cmds.el (select-safe-coding-system): | ||
| 14 | Don't offer coding systems that use locking shift. | ||
| 15 | Ask for confirmation if chosen coding system disagrees with | ||
| 16 | a `coding:' spec in the file. | ||
| 17 | |||
| 7 | 2002-05-03 John Wiegley <johnw@gnu.org> | 18 | 2002-05-03 John Wiegley <johnw@gnu.org> |
| 8 | 19 | ||
| 9 | * eshell/esh-var.el (eshell-modify-global-environment): Added this | 20 | * eshell/esh-var.el (eshell-modify-global-environment): Added this |
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el index 63de2bcb2d9..f7ded1a360e 100644 --- a/lisp/play/mpuz.el +++ b/lisp/play/mpuz.el | |||
| @@ -367,7 +367,7 @@ You may abort a game by typing \\<mpuz-mode-map>\\[mpuz-offer-abort]." | |||
| 367 | (let ((buf (mpuz-get-buffer))) | 367 | (let ((buf (mpuz-get-buffer))) |
| 368 | (or buf (setq buf (mpuz-create-buffer))) | 368 | (or buf (setq buf (mpuz-create-buffer))) |
| 369 | (switch-to-buffer buf) | 369 | (switch-to-buffer buf) |
| 370 | (or buffer-read-only (toggle-read-only)) | 370 | (setq buffer-read-only t) |
| 371 | (mpuz-mode))) | 371 | (mpuz-mode))) |
| 372 | 372 | ||
| 373 | 373 | ||