# HG changeset patch # User Thomas Arendsen Hein # Date 1224507233 -7200 # Node ID a79d3f5358097392957b038eebacf9eb7565e220 # Parent 98b6c3dde237d7688fb4c577bc0f851bbd257ca0 spaces->tabs in one line of a C extension for consistency diff -r 98b6c3dde237 -r a79d3f535809 mercurial/bdiff.c --- a/mercurial/bdiff.c Sun Oct 19 19:49:56 2008 +0200 +++ b/mercurial/bdiff.c Mon Oct 20 14:53:53 2008 +0200 @@ -80,7 +80,7 @@ h = 0; for (p = a; p < a + len; p++) { /* Leonid Yuriev's hash */ - h = (h * 1664525) + *p + 1013904223; + h = (h * 1664525) + *p + 1013904223; if (*p == '\n' || p == plast) { l->h = h;