From d362490d45f588167ab69b00e7c57bde58670ad1 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 25 Sep 2022 18:19:37 +0200 Subject: [PATCH] fix(docs): if doom-emacs-dir doesn't end w/ slash Doom is slowly transitioning away from requiring that its doom-*-dir variables end in a slash (see two refs below), but there are some vestiges of it left. This is one of them. Fix: #6842 Ref: 00e8f6b72a08 Ref: b91483040363 --- lisp/lib/docs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/lib/docs.el b/lisp/lib/docs.el index b30a3072a..8fb7975fa 100644 --- a/lisp/lib/docs.el +++ b/lisp/lib/docs.el @@ -13,7 +13,7 @@ ;;; Code: ;;;###autoload -(defvar doom-docs-dir (concat doom-emacs-dir "docs/") +(defvar doom-docs-dir (file-name-concat doom-emacs-dir "docs/") "Where Doom's documentation files are stored. Must end with a slash.") ;; DEPRECATED Will be renamed once docs "framework" is generalized