From 7763f7aa8cd7c20492e520abc71e93e019d900c9 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 8 Sep 2016 11:59:46 +0200 Subject: [PATCH] Fix #4: stop uniquify from throwing errors --- core/core-scratch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-scratch.el b/core/core-scratch.el index 5ede7fa91..a01b9b514 100644 --- a/core/core-scratch.el +++ b/core/core-scratch.el @@ -28,7 +28,7 @@ (not (eq doom-buffer (current-buffer)))) (after! uniquify - (push (regexp-quote doom-buffer-name) uniquify-ignore-buffers-re)) + (setq uniquify-ignore-buffers-re (regexp-quote doom-buffer-name))) (add-hook! emacs-startup 'doom-mode-init)