Function: mpuz-switch-to-window

mpuz-switch-to-window is a byte-compiled function defined in mpuz.el.gz.

Signature

(mpuz-switch-to-window)

Documentation

Find or create the Mult-Puzzle buffer, and display it.

Source Code

;; Defined in /usr/src/emacs/lisp/play/mpuz.el.gz
(defun mpuz-switch-to-window ()
  "Find or create the Mult-Puzzle buffer, and display it."
  (let ((buf (or (mpuz-get-buffer)
                 (mpuz-create-buffer))))
    (switch-to-buffer buf)
    (setq buffer-read-only t)
    (mpuz-mode)))