]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/fns.c (Fvaluelt): More generous depth limit (20 -> 200).
authorMattias EngdegÄrd <mattiase@acm.org>
Fri, 29 Mar 2024 14:23:56 +0000 (15:23 +0100)
committerEshel Yaron <me@eshelyaron.com>
Fri, 29 Mar 2024 19:22:04 +0000 (20:22 +0100)
This gives `value<` the same limit as `equal` which seems about right.

(cherry picked from commit d2d5e514397c453bbaa6e7fc3441af2d538eb3cf)

src/fns.c

index 8d8783713ab8453d818f73c3769a0cf2aa3b3f6e..db5e856d5bda0ca92b3d8cc378cf58a541438c8b 100644 (file)
--- 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;
 }