1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-12 14:30:42 -08:00

* 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:
Mattias Engdegård 2024-03-29 15:23:56 +01:00
parent 6f7cb96543
commit d2d5e51439

View file

@ -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;
}