summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--txr.112
1 files changed, 10 insertions, 2 deletions
diff --git a/txr.1 b/txr.1
index dd4312f3..92e008b8 100644
--- a/txr.1
+++ b/txr.1
@@ -19208,7 +19208,13 @@ bindings. In \*(TL, they are considered bindings.
The ANSI Common Lisp
.code fboundp
yields true if its argument has a function, macro or operator
-binding. The behavior of the Common Lisp expression
+binding, whereas the \*(TL
+.code fboundp
+does not consider operators or macros.
+The ANSI CL
+.code fboundp
+does not yield true for lambda expressions.
+Behavior similar to the Common Lisp expression
.code "(fboundp x)"
in Common Lisp can be obtained in \*(TL using the
@@ -19216,7 +19222,9 @@ in Common Lisp can be obtained in \*(TL using the
(or (fboundp x) (mboundp x) (special-operator-p x))
.brev
-expression.
+expression, except that this will also yield true when
+.code x
+is a lambda expression.
The
.code mboundp