From a5f39d75a5d8dd3211c3064199873630a27e7ad1 Mon Sep 17 00:00:00 2001 From: Yuri Pieters Date: Thu, 28 Jan 2021 21:09:36 +0000 Subject: [PATCH] Fix 'readme' button doom/help-packages The button was trying to open `path/to/README.org/README.org`. --- core/autoload/help.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/autoload/help.el b/core/autoload/help.el index 3218e10af..909898d60 100644 --- a/core/autoload/help.el +++ b/core/autoload/help.el @@ -576,9 +576,7 @@ If prefix arg is present, refresh the cache." (if (file-exists-p readme-path) (doom--help-insert-button "readme" - (expand-file-name - "README.org" - readme-path)) + readme-path) (insert "no readme")) (insert ")\n"))))