; Package for the emacs tutorial
(defun (learn
	     (save-window-excursion 
		 (delete-other-windows)
		 (switch-to-buffer "emacs-tutorial")
		 (erase-buffer)
		 (insert-file "emacs:tutorial.txt")
		 (setq needs-checkpointing 0)
		 (recursive-edit)
	     )
       ))
