# HG changeset patch # User Steve Losh # Date 1471914721 0 # Node ID af7866087dc8dfea51e718b675d7bf2bb61f83c8 # Parent a67a98352d5b4bf1cd7cf05939bca8a441e5f630 Update docs diff -r a67a98352d5b -r af7866087dc8 DOCUMENTATION.markdown --- a/DOCUMENTATION.markdown Tue Aug 23 01:10:58 2016 +0000 +++ b/DOCUMENTATION.markdown Tue Aug 23 01:12:01 2016 +0000 @@ -171,6 +171,9 @@ In `body` the symbol `recur` will be bound to the function for recurring. + Does not perform a tail-recursion check like Clojure's `loop`. You know what + you're doing, right? + Example: (defun length (some-list) diff -r a67a98352d5b -r af7866087dc8 losh.lisp --- a/losh.lisp Tue Aug 23 01:10:58 2016 +0000 +++ b/losh.lisp Tue Aug 23 01:12:01 2016 +0000 @@ -218,6 +218,9 @@ In `body` the symbol `recur` will be bound to the function for recurring. + Does not perform a tail-recursion check like Clojure's `loop`. You know what + you're doing, right? + Example: (defun length (some-list)