emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master d2d5e514397 1/2: * src/fns.c (Fvaluelt): More generous depth limi


From: Mattias Engdegård
Subject: master d2d5e514397 1/2: * src/fns.c (Fvaluelt): More generous depth limit (20 -> 200).
Date: Fri, 29 Mar 2024 11:01:58 -0400 (EDT)

branch: master
commit d2d5e514397c453bbaa6e7fc3441af2d538eb3cf
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    * src/fns.c (Fvaluelt): More generous depth limit (20 -> 200).
    
    This gives `value<` the same limit as `equal` which seems about right.
---
 src/fns.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]