If you don’t like your tab width, CHANGE IT. That’s a huge win over spaces, where indentation is hard-coded.
If someone prefers a narrow tab width and breaks lines based on that, then someone who prefers a wide tab width will get overfull lines:
20 column limit, 2-column tabs: if (a==b) { | if (b==c) { | some_function();| 20 column limit, 4-column tabs: if (a==b) { | if (b==c) { | some_functio| <- overfull line
I remember Linus saying that explicitly.