From 6b65feabf1b0528e16e0ead84c8e2a3bb5ce55c3 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Wed, 6 Nov 2024 19:55:05 +0100 Subject: ; Remove thinko value from 'package-autosuggest-database' * lisp/emacs-lisp/package.el (package-autosuggest-database): Read the result of evaluating 'expand-file-name' instead of discarding the value. --- lisp/emacs-lisp/package.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 4f20a1735f2..ec56c327dae 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -4543,7 +4543,7 @@ the `Version:' header." (eval-when-compile (with-temp-buffer (insert-file-contents - (expand-file-name "package-autosuggest.eld" data-directory)"/home/phi/Source/emacs/etc/package-autosuggest.eld") + (expand-file-name "package-autosuggest.eld" data-directory)) (read (current-buffer)))) "List of hints for packages to suggest installing. Each hint has the form (PACKAGE TYPE DATA), where PACKAGE is a symbol -- cgit v1.2.1