summaryrefslogtreecommitdiff
path: root/dh-elpa.el
diff options
context:
space:
mode:
Diffstat (limited to 'dh-elpa.el')
-rw-r--r--dh-elpa.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh-elpa.el b/dh-elpa.el
index ed70822..cff7009 100644
--- a/dh-elpa.el
+++ b/dh-elpa.el
@@ -64,8 +64,8 @@ Downloads and installs required packages as needed."
(defun dhelpa-batch-install-file ()
"install first command line argument (an emacs lisp file)
into second command line argument"
- (let ((el-file (car command-line-args-left))
- (dest (cadr command-line-args-left)))
+ (let ((dest (car command-line-args-left))
+ (el-file (cadr command-line-args-left)))
(with-temp-buffer
(insert-file-contents-literally el-file)
(dhelpa-install-from-buffer dest))))