branch: externals/system-packages
commit a6e053ea6a6a106ee1c7ff414ba115fe45bad866
Author: Alex Branham <bran...@utexas.edu>
Commit: Alex Branham <bran...@utexas.edu>

    Fix parens
---
 system-packages.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/system-packages.el b/system-packages.el
index cd0c50f..4f0d629 100644
--- a/system-packages.el
+++ b/system-packages.el
@@ -137,8 +137,9 @@ list all installed packages."
   (let ((command
          (if (and arg (or (equal system-packages-packagemanager "pacaur")
                           (equal system-packages-packagemanager "pacman"))) 
"pacman -Q"
-           (if (equal system-packages-packagemanager "pacman") "pacman -Qe"
+           (if (equal (or (equal system-packages-packagemanager "pacaur")
+                          (equal system-packages-packagemanager "pacman")) 
"pacman -Qe"
              (if (equal system-packages-packagemanager "brew") "brew list")))))
-         (async-shell-command command)))
+         (async-shell-command command))))
                
 (provide 'system-packages)

Reply via email to