aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Kaludercic2024-11-06 19:55:05 +0100
committerPhilip Kaludercic2024-11-06 19:55:05 +0100
commit6b65feabf1b0528e16e0ead84c8e2a3bb5ce55c3 (patch)
tree93a6975664a24ca8a398712962da3066f7f5f879
parentd9214f157359f6ed00de27ba2756127ee754140f (diff)
downloademacs-6b65feabf1b0528e16e0ead84c8e2a3bb5ce55c3.tar.gz
emacs-6b65feabf1b0528e16e0ead84c8e2a3bb5ce55c3.zip
; 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.
-rw-r--r--lisp/emacs-lisp/package.el2
1 files changed, 1 insertions, 1 deletions
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."
4543 (eval-when-compile 4543 (eval-when-compile
4544 (with-temp-buffer 4544 (with-temp-buffer
4545 (insert-file-contents 4545 (insert-file-contents
4546 (expand-file-name "package-autosuggest.eld" data-directory)"/home/phi/Source/emacs/etc/package-autosuggest.eld") 4546 (expand-file-name "package-autosuggest.eld" data-directory))
4547 (read (current-buffer)))) 4547 (read (current-buffer))))
4548 "List of hints for packages to suggest installing. 4548 "List of hints for packages to suggest installing.
4549Each hint has the form (PACKAGE TYPE DATA), where PACKAGE is a symbol 4549Each hint has the form (PACKAGE TYPE DATA), where PACKAGE is a symbol