; More coding style fixes
* src/sort.c (reverse_sortslice, tim_sort): Correct not-so egregious misformattings.
This commit is contained in:
parent
f43f7d7a43
commit
b990c37b9a
1 changed files with 3 additions and 3 deletions
|
@ -1052,9 +1052,9 @@ merge_compute_minrun (ptrdiff_t n)
|
|||
static void
|
||||
reverse_sortslice (sortslice *s, const ptrdiff_t n)
|
||||
{
|
||||
reverse_slice(s->keys, &s->keys[n]);
|
||||
reverse_slice (s->keys, &s->keys[n]);
|
||||
if (s->values != NULL)
|
||||
reverse_slice(s->values, &s->values[n]);
|
||||
reverse_slice (s->values, &s->values[n]);
|
||||
}
|
||||
|
||||
static Lisp_Object
|
||||
|
@ -1161,7 +1161,7 @@ tim_sort (Lisp_Object predicate, Lisp_Object keyfunc,
|
|||
ms.pending[ms.n].len = n;
|
||||
++ms.n;
|
||||
/* Advance to find the next run. */
|
||||
sortslice_advance(&lo, n);
|
||||
sortslice_advance (&lo, n);
|
||||
nremaining -= n;
|
||||
} while (nremaining);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue