From 1da124f689a74a2f92ed079c5846f229e7eba625 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 31 May 2016 22:33:04 -0400 Subject: [PATCH] Add TODO for configuration-layer/describe-package --- core/core-configuration-layer.el | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/core/core-configuration-layer.el b/core/core-configuration-layer.el index e97e4fda2..73337d5e1 100644 --- a/core/core-configuration-layer.el +++ b/core/core-configuration-layer.el @@ -463,11 +463,13 @@ If TOGGLEP is non nil then `:toggle' parameter is ignored." (defun configuration-layer/describe-package (pkg-symbol &optional layer-list pkg-list) "Describe a package in the context of the configuration layer system." - (interactive (list (intern - (completing-read - "Package: " - (mapcar (lambda (pkg) (symbol-name (oref pkg :name))) - configuration-layer--packages))))) + (interactive + (list (intern + (completing-read + "Package: " + (mapcar (lambda (pkg) (symbol-name (oref pkg :name))) + ;; TODO make it work with `configuration-layer/get-all-packages' + configuration-layer--packages))))) (let* ((pkg (object-assoc pkg-symbol :name (or pkg-list configuration-layer--packages))) (owner (oref pkg :owner)))