diff options
| author | Mattias EngdegÄrd | 2024-03-29 15:23:56 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2024-03-29 15:40:15 +0100 |
| commit | d2d5e514397c453bbaa6e7fc3441af2d538eb3cf (patch) | |
| tree | 1b5c6fdfdf40a41e73e2198dfb79fb44b428c4bd | |
| parent | 6f7cb96543285dc8e37135abaec87d0b9a40e2e2 (diff) | |
| download | emacs-d2d5e514397c453bbaa6e7fc3441af2d538eb3cf.tar.gz emacs-d2d5e514397c453bbaa6e7fc3441af2d538eb3cf.zip | |
* src/fns.c (Fvaluelt): More generous depth limit (20 -> 200).
This gives `value<` the same limit as `equal` which seems about right.
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -3201,7 +3201,7 @@ Buffers and processes are compared by name. | |||
| 3201 | Other types are considered unordered and the return value will be `nil'. */) | 3201 | Other types are considered unordered and the return value will be `nil'. */) |
| 3202 | (Lisp_Object a, Lisp_Object b) | 3202 | (Lisp_Object a, Lisp_Object b) |
| 3203 | { | 3203 | { |
| 3204 | int maxdepth = 20; /* FIXME: arbitrary value */ | 3204 | int maxdepth = 200; /* FIXME: arbitrary value */ |
| 3205 | return value_cmp (a, b, maxdepth) < 0 ? Qt : Qnil; | 3205 | return value_cmp (a, b, maxdepth) < 0 ? Qt : Qnil; |
| 3206 | } | 3206 | } |
| 3207 | 3207 | ||