all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: pjb@informatimago.com (Pascal J. Bourguignon)
To: help-gnu-emacs@gnu.org
Subject: Re: *scratch* lost
Date: Mon, 15 Jun 2009 12:24:21 +0200	[thread overview]
Message-ID: <7cr5xlyeui.fsf@pbourguignon.anevia.com> (raw)
In-Reply-To: mJidnVTa8bVPTK7XnZ2dnUVZ_s6dnZ2d@sysmatrix.net

"B. T. Raven" <nihil@nihilo.net> writes:

> I was doing some key mapping in .emacs and instead of saving the file,
> restarting Emacs, and testing the new assignment I was doing M-x eval
> region on changed areas of .emacs Somehow all (or many) keychords
> started acting strangely, e.g. C-x 1 would open subr.el in a new
> buffer instead of showing current buffer alone in frame, even cursor
> movement keys did something else. I killed .emacs buffer without
> saving (losing changes) and then exited Emacs. On restarting
> everything looks and works normally exept that *scratch* is empty
> (three commented lines are missing) and it is in Fundamental mode
> instead of Lisp Interaction. Can I get the old *scratch* buffer back?
> How?

(defun make-scratch ()
  (interactive)
  (if (get-buffer "*scratch*")
     (switch-to-buffer (get-buffer "*scratch*"))
     (progn
        (switch-to-buffer (get-buffer-create "*scratch*"))
        (insert ";; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.

")
    (emacs-lisp-mode))))


M-x make-scratch RET



-- 
__Pascal Bourguignon__


  parent reply	other threads:[~2009-06-15 10:24 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-13 16:20 *scratch* lost B. T. Raven
2009-06-13 16:40 ` B. T. Raven
2009-06-15 10:24 ` Pascal J. Bourguignon [this message]
2009-06-15 15:31   ` B. T. Raven
2009-06-17 11:03   ` Stefan Kamphausen
2009-06-17 11:36     ` Pascal J. Bourguignon
2009-06-17 11:49       ` Stefan Kamphausen
2009-06-17 12:25         ` B. T. Raven
2009-06-17 14:12           ` Rancier, Jeffrey
2009-06-17 18:14         ` Johan Bockgård

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7cr5xlyeui.fsf@pbourguignon.anevia.com \
    --to=pjb@informatimago.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.