From b175201437c3a36ab6506caa1a1d318b825b463b Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Mon, 17 Jul 2017 17:13:49 +0200 Subject: [PATCH] name forked scratch buffer *scratch* not *autoscratch* --- autoscratch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoscratch.el b/autoscratch.el index fb2c514..ef0a2a8 100644 --- a/autoscratch.el +++ b/autoscratch.el @@ -143,7 +143,7 @@ Executes `autoscratch-rename-hook' afterwards." (defun autoscratch-buffer () "Create and switch to a new autoscratch buffer." (interactive) - (let ((buf (get-buffer-create "*autoscratch*"))) + (let ((buf (get-buffer-create "*scratch*"))) (switch-to-buffer buf) (autoscratch-mode)))