From: Andi Kleen <ak@xxxxxxxxxxxxxxx> If you have something like <sp><sp><sp><sp><sp><sp><sp><sp>blabla in a patch cleanpatch does not replace the spaces with tabs. That is because it only handles space in front of tab. But it's more convenient if it also replaces space with tabs, even if there is no tab at all, as that is what checkpatch and other pedants expect. Cc: hpa@xxxxxxxxx Signed-off-by: Andi Kleen <ak@xxxxxxxxxxxxxxx> --- scripts/cleanpatch | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/cleanpatch b/scripts/cleanpatch index 9680d03..d14aac9 100755 --- a/scripts/cleanpatch +++ b/scripts/cleanpatch @@ -39,6 +39,10 @@ sub clean_space_tabs($) } elsif ($c eq " ") { $nsp++; } else { + while ($nsp >= 8) { + $lo .= "\t"; + $nsp -= 8; + } $lo .= " " x $nsp; $pos += $nsp; $nsp = 0; -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html