diff options
author | pdn <pnathan@vandals.uidaho.edu> | 2013-08-11 10:40:51 -0700 |
---|---|---|
committer | pdn <pnathan@vandals.uidaho.edu> | 2013-08-11 10:40:51 -0700 |
commit | fa910a4bc9044b4ac60c57e568fcd265657f2bcc (patch) | |
tree | 4e1ad76748d039f54dc3643530639eb9ccf1424d /common-lisp.html.markdown | |
parent | f39aa6adfb98086e98773f7871c3ba70f97c5771 (diff) |
Foolishness borne of haste
Diffstat (limited to 'common-lisp.html.markdown')
-rw-r--r-- | common-lisp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index 9f2c9957..24b6947f 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -410,7 +410,7 @@ nil ; for false - and the empty list ;; Of course recursion is supported: (defun walker (n) - (if (zerop 0) + (if (zerop n) :walked (walker (1- n)))) |