summaryrefslogtreecommitdiff
path: root/helm-apt.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2014-10-16 17:20:08 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2014-10-16 17:20:08 +0200
commit8732a562000676ca739344bc113e63f805801fee (patch)
treef1c103b9f9509d24ea48a877f3d0d7311f6cbe21 /helm-apt.el
parent1e97e71e2b06ae961cdb73f99371b3c35e369ee7 (diff)
* helm-apt.el (helm-apt-candidate-transformer): Revert previous change for this function.
Diffstat (limited to 'helm-apt.el')
-rw-r--r--helm-apt.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/helm-apt.el b/helm-apt.el
index 426d06b7..fd788548 100644
--- a/helm-apt.el
+++ b/helm-apt.el
@@ -113,7 +113,9 @@ If nil default `helm-apt-cache-show-1' will be used."
((and install
(memq helm-apt-show-only '(all installed)))
(propertize cand 'face 'helm-apt-installed))
- (t cand))
+ ((and (eq helm-apt-show-only 'noinstalled)
+ (not install)) cand)
+ ((eq helm-apt-show-only 'all) cand))
when show collect show))
(defun helm-apt-show-only-installed ()