From 44c8d3c8e432239fadd7a09495a696f4971aa5cb Mon Sep 17 00:00:00 2001 From: Alexandre de Siqueira Date: Mon, 26 Jul 2021 17:45:52 -0700 Subject: [PATCH] Adding new line on string on how to upgrade Emacs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current string presented breaks the address on how to upgrade Emacs: ``` ❯ doom install Detected Emacs 26.3 (at emacs). Doom only supports Emacs 27.1 and newer. A guide to install a newer version of Emacs can be found at: https://doomemacs.org/docs/getting_started.org#on-linuxAborting... ``` Just adding a `\n` at the end of the string would solve it. --- bin/doom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doom b/bin/doom index 00f6e8904..4f72f20f1 100755 --- a/bin/doom +++ b/bin/doom @@ -32,7 +32,7 @@ (concat "Detected Emacs " emacs-version " (at " (car command-line-args) ").\n\n" "Doom only supports Emacs 27.1 and newer. A guide to install a newer version\n" "of Emacs can be found at:\n\n " - (format "https://doomemacs.org/docs/getting_started.org#%s" + (format "https://doomemacs.org/docs/getting_started.org#%s\n" (cond ((eq system-type 'darwin) "on-macos") ((memq system-type '(cygwin windows-nt ms-dos)) "on-windows") ("on-linux")))