From 404bfb2a20909e6190359ccbc25e3bb1e2b200ff Mon Sep 17 00:00:00 2001 From: JSDurand Date: Tue, 20 Apr 2021 09:02:39 +0800 Subject: Fix info directory * bongo.el : I was appending a list with a non-list, essentially. --- bongo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bongo.el b/bongo.el index f5677e4..5805a51 100644 --- a/bongo.el +++ b/bongo.el @@ -36,7 +36,7 @@ '(cond ((null Info-directory-list) (setq Info-directory-list (append Info-default-directory-list - (expand-file-name "bongo/" package-dir)))) + (list (expand-file-name "bongo/" package-dir))))) ((add-to-list 'Info-directory-list (expand-file-name "bongo/" package-dir))))) ;;;###autoload -- cgit v1.2.3-18-g5258