]> git.eshelyaron.com Git - emacs.git/commitdiff
(mpuz-switch-to-window): Set buffer-read-only directly.
authorRichard M. Stallman <rms@gnu.org>
Sat, 4 May 2002 14:17:21 +0000 (14:17 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 4 May 2002 14:17:21 +0000 (14:17 +0000)
lisp/ChangeLog
lisp/play/mpuz.el

index 8e62b8ac391b274eb4cd076025c8f274dff6fd1d..e7cfe1c6adc7ada3a1170f439715979519f42cd0 100644 (file)
@@ -1,9 +1,20 @@
+2002-05-04  Daniel Pfeiffer  <occitan@esperanto.org>
+
+       * play/mpuz.el (mpuz-switch-to-window): Set buffer-read-only directly.
+
 2002-05-04  Kim F. Storm  <storm@cua.dk>
 
        * cus-edit.el (custom-buffer-verbose-help): New variable.
        (custom-buffer-create-internal): Remove verbose introduction
        in customization buffer when it is nil.
 
+2002-05-03  Dave Love  <fx@gnu.org>
+
+       * international/mule-cmds.el (select-safe-coding-system):
+       Don't offer coding systems that use locking shift.
+       Ask for confirmation if chosen coding system disagrees with
+       a `coding:' spec in the file.
+
 2002-05-03  John Wiegley  <johnw@gnu.org>
 
        * eshell/esh-var.el (eshell-modify-global-environment): Added this
index 63de2bcb2d9ce073c4a2249229ac7f9dda89ba83..f7ded1a360e9a081d44565a2ab0df302ce3b31df 100644 (file)
@@ -367,7 +367,7 @@ You may abort a game by typing \\<mpuz-mode-map>\\[mpuz-offer-abort]."
   (let ((buf (mpuz-get-buffer)))
     (or buf (setq buf (mpuz-create-buffer)))
     (switch-to-buffer buf)
-    (or buffer-read-only (toggle-read-only))
+    (setq buffer-read-only t)
     (mpuz-mode)))
 
 \f