From f5f5918fbb62e75086cfac8660795d72eb1f8f1d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 6 Sep 2019 15:42:14 -0400 Subject: [PATCH] bin/doctor: remove emacs version check This no longer works and is no longer necessary. --- bin/doom-doctor | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/bin/doom-doctor b/bin/doom-doctor index eff7803c7..ef191a474 100755 --- a/bin/doom-doctor +++ b/bin/doom-doctor @@ -139,18 +139,6 @@ (concat "\nMacOS users should use homebrew (https://brew.sh) to install Emacs\n" " brew install emacs --with-modules --with-imagemagick --with-cocoa")))) - (section! "Checking if your version of Emacs has changed recently...") - (let ((version-file (expand-file-name ".local/emacs-version.el" user-emacs-directory)) - doom--last-emacs-version) - (when (and (load version-file 'noerror 'nomessage 'nosuffix) - (not (equal emacs-version doom--last-emacs-version))) - (warn! "Your version of Emacs has changed from %S to %S. Recompile your packages!" - doom--last-emacs-version - emacs-version) - (explain! "Byte-code compiled in one version of Emacs may not work in another version." - "It is recommended that you reinstall your plugins or recompile them with" - "`bin/doom rebuild'."))) - (section! "Checking for Emacs config conflicts...") (when (file-exists-p "~/.emacs") (warn! "Detected an ~/.emacs file, which may prevent Doom from loading")