Simplify the exists command
This commit is contained in:
parent
fdce2ed81c
commit
977627a8af
1 changed files with 3 additions and 8 deletions
|
@ -170,14 +170,9 @@ omitted or any number of tag names."
|
|||
|
||||
Check if URL exists in the database. Prints `yes' when found and `no'
|
||||
otherwise."
|
||||
(if (execute-single *db* "SELECT rowid FROM bookmark WHERE url = ?"
|
||||
(car args))
|
||||
(progn
|
||||
(format t "yes~%")
|
||||
0)
|
||||
(progn
|
||||
(format t "no~%")
|
||||
1)))
|
||||
(format t "~:[no~;yes~]~%"
|
||||
(execute-single
|
||||
*db* "SELECT rowid FROM bookmark WHERE url = ?" (car args))))
|
||||
|
||||
(defcommand help
|
||||
"Show help message."
|
||||
|
|
Loading…
Reference in a new issue