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:
parent
6f7cb96543
commit
d2d5e51439
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue