Skip to content

Commit

Permalink
Fix :backup option not accepting NIL
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Mikhanosha committed May 18, 2013
1 parent a0ee970 commit 40152e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configurator.lisp
Expand Up @@ -310,7 +310,7 @@ Examples:
(:force-add (setq force-add t))
(:watch (setq watch t))
(:backup
(setq backup (or (pop args)
(setq backup (if args (pop args)
(log4cl-error ":BACKUP missing argument"))
had-backup t))
(:daily
Expand Down

0 comments on commit 40152e0

Please sign in to comment.