From 673b466285dbd97ef8a131ddd895d195c928c7c3 Mon Sep 17 00:00:00 2001 From: Pigeon F Date: Wed, 13 Sep 2017 15:24:37 +0200 Subject: [PATCH] Fix spelling mistake: 'hisstory' => 'history' Emacs will happily assign a value to a not yet existent variable, which is why this fails silently. --- core/core-editor.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-editor.el b/core/core-editor.el index 985b0aeec..0597aa95a 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -142,7 +142,7 @@ with functions that require it (like modeline segments)." ;; savehist / saveplace (setq savehist-file (concat doom-cache-dir "savehist") - savehist-save-minibuffer-hisstory t + savehist-save-minibuffer-history t savehist-autosave-interval nil ; save on kill only savehist-additional-variables '(kill-ring search-ring regexp-search-ring) save-place-file (concat doom-cache-dir "saveplace"))