diff options
Diffstat (limited to 'src')
| -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 | ||