summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 8d8783713ab..db5e856d5bd 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3201,7 +3201,7 @@ Buffers and processes are compared by name.
Other types are considered unordered and the return value will be `nil'. */)
(Lisp_Object a, Lisp_Object b)
{
- int maxdepth = 20; /* FIXME: arbitrary value */
+ int maxdepth = 200; /* FIXME: arbitrary value */
return value_cmp (a, b, maxdepth) < 0 ? Qt : Qnil;
}