From 77924c8feb3764f5bfed4288264e4c2887b20ba8 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 29 Nov 2020 15:01:44 -0500 Subject: [PATCH] Remove tab-prefix-map fix Since we've bumped project.el in the :tools lsp module, which was the cause of this error to begin with. --- core/core.el | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/core.el b/core/core.el index 27499a5f0..20d0d1151 100644 --- a/core/core.el +++ b/core/core.el @@ -53,12 +53,6 @@ (setq file-name-handler-alist doom--initial-file-name-handler-alist)) (add-hook 'emacs-startup-hook #'doom-reset-file-handler-alist-h)) -;; REVIEW Fixes 'void-variable tab-prefix-map' errors caused by packages that -;; prematurely use this variable before it was introduced. Remove this in -;; a year. -(unless (boundp 'tab-prefix-map) - (defvar tab-prefix-map (make-sparse-keymap))) - ;; Just the bare necessities (require 'subr-x) (require 'cl-lib)