From 933a51ed707158c4c0eee879e3a4db885d644cc6 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Thu, 28 Mar 2013 00:52:48 +0100 Subject: Change order of script output The order of parameters for `--script' and without it was different, to keep things simple these should be the same. --- lisp/clark.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp') diff --git a/lisp/clark.lisp b/lisp/clark.lisp index cefc1a3..f061c23 100644 --- a/lisp/clark.lisp +++ b/lisp/clark.lisp @@ -194,7 +194,7 @@ BM should be a list containing the url, name and description of the bookmark." (destructuring-bind (url name description) bm (if *script* - (format t "~A~A~A" name description url) + (format t "~A~A~A" url name description) (format t "~A~% ~A~% ~A~%~%" url name description)))) (defcommand add (url name description &rest tags) -- cgit v1.3-2-g0d8e