* src/fns.c (Fvaluelt): More generous depth limit (20 -> 200).
This gives `value<` the same limit as `equal` which seems about right.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user