summaryrefslogtreecommitdiff
path: root/helm-apt.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-03-24 20:27:11 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-03-24 20:27:11 +0100
commit1a32f6f5be55b313f40dd5b0a6b4a048c47559aa (patch)
tree5a1d18ad7eda69ed996c302e762578d2c2b73893 /helm-apt.el
parent5aac47a039a5067f4a4bcf368adb218bfcb0c6db (diff)
* helm-apt.el (helm-apt-generic-action): Don't quote.
Diffstat (limited to 'helm-apt.el')
-rw-r--r--helm-apt.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/helm-apt.el b/helm-apt.el
index 5ed697b4..cd9a3d9e 100644
--- a/helm-apt.el
+++ b/helm-apt.el
@@ -188,10 +188,10 @@ Support install, remove and purge actions."
(ansi-term (getenv "SHELL") "helm apt")
(term-line-mode)
(let ((command (case action
- ('install "sudo apt-get install ")
- ('reinstall "sudo apt-get install --reinstall ")
- ('uninstall "sudo apt-get remove ")
- ('purge "sudo apt-get purge ")
+ (install "sudo apt-get install ")
+ (reinstall "sudo apt-get install --reinstall ")
+ (uninstall "sudo apt-get remove ")
+ (purge "sudo apt-get purge ")
(t (error "Unknow action"))))
(beg (point))
end