- Linus Torvalds added hidden tabs to Kconfig to challenge parsers that can’t handle them.
- Tabs were intentionally added to the common Kconfig file for page sizes to expose faulty parsers.
- Torvalds believes parsers unable to handle tabs shouldn’t be parsing kernel Kconfig files, aiming to force fixes.
“if you can’t parse tabs as whitespace, you should not be parsing the kernel Kconfig files.” ~ Linus Torvalds
This is what we got after people sent him into PC training. The OG Linus would say something like “if you’re a piece of s* that can’t get over your a** to parse tabs as whitespace you should be ashamed to walk on this planet let alone parsing the kernel Kconfig files. What a f* waste of space.”
And honestly, I find his phrasing today far more damming with its conciseness. It screams leadership.
Thanks for your insight, fartsparkles.
Please make fartsparkles the new rimjobsteve. Pretty please?
Spreading kindness to strangers, treating people with respect, and being a force for good on the internet is something everyone should aspire to.
Also I ate way too much glitter than usual this one time and I’ve never been able to live it down. Embrace, extend, shine.
than usual?
I mean, it wasn’t an unhealthy amount!
+1
I need more fartsparkles in my life.
Sparkly bling bling farts is the new fetish.
Yeah, I can’t stop laughing at
If you can’t parse tabs, you can’t have page sizes.
It’s like how I’d admonish my pet
Indeed 😂😂
The Gordon Ramsey of programing
Why are you censoring your own text? Truly baffling.
Because… there’s moderation on lemmy that doesn’t like certain words :P
I promise, you can say shit, ass and fuck
Yes, but can you say removed, removed, and sharemoved?
Pretty sure your instance is one of the only ones with that filter
cover your eyes!
sha256 I said it
deleted by creator
I’ve had some posts removed because of that so… maybe not on this community but still.
Not on your instance.
I think your keyboard is broken. It’s inserting random stars in your text.
Yours is too, its posting a silly link at the bottom which makes you look like you’re a Facebook mom in 2003.
Dear Mark Zuckerberg
With this statement, I give notice to Facebook it is strictly forbidden to disclose, copy, distribute, or take any other action against me based on this profile and/or its contents. The content of this profile is private and confidential information. The violation of privacy can be punished by law (UCC 1-308- 1 1 308-103 and the Rome Statute. NOTE: Facebook is now a public entity. All members must post a note like this. If you prefer, you can copy and paste this version. If you do not publish a statement at least once it will be tacitly allowing the use of your photos, as well as the information contained in the profile status updates. FACEBOOK DOES NOT HAVE MY PERMISSION TO SHARE PHOTOS OR MESSAGES.

Ah finally! You didn’t put that link in this comment, so I get to feed it to my hungry AI that I keep down in my basement!
Doing the pointless thing is whatever.
Mocking people who point out it’s pointless is toxic, abusive, and deeply revealing. You think AI harvesters give a shit what you’ve told them not to harvest?
Dude. Censoring profanity ain’t as cringe as licensing a fucking Lemmy comment XD
Can’t we just all come together and agree that they’re both cringe
xD xD XDDDD
No-no-no. “Whoever can’t handle tabs as whitespaces should heat their IQ, it is below freezing right now”. Or classic “should be retroactively aborted”.
Nice one. Maybe e can make a website “whatwouldlinussay.com”?
Why would anyone NOT parse a tab as whitespace? Like, python really wants you to use spaces but will still let you use tabs if you are consistent.
Even then, unless for some reason you code on paper, there is no excuse to not have a formatter, that enforces one style, or the other
I’m honestly on Torvalds’ side here.
Tabs are a necessary part of the tooling and configuration files. Any tool which doesn’t properly handle files that are correctly formatted for other tools is… a broken tool.
Torvalds believes parsers unable to handle tabs shouldn’t be parsing kernel Kconfig files, aiming to force fixes.
Stern but just
Reminds me of Beethoven writing Für Elise for sometime he loved, and when he was rejected, the music was finished in such a way that she could not play it.
Fur Elise wasn’t discovered until 40 years after his death and its unknown who it was written for.
Wait, isn’t that obvious? Its for Elise!
deleted by creator
Based Linus is based.
I do the same to people who refuse to follow specifications they agreed to follow.
There is a slight satisfaction to get back at them for continually delivering much lower quality than is required.
But it really is to cover me. Because, it always happens, later in the future that edge case comes up, and everything breaks. And management is ready to blame me. But then I show them that I tested the edge case before the conclusion of the project. And that programmer ignored my emails, and that I told management these edge cases weren’t covered. But then management signed off on calling it complete. And suddenly management is no longer red with fury. And they usually won’t allow me time to fix it. So the can gets kicked down the road until the next time that edge case fails.
Unconventional way to take acid, but I support him.
The Register did a good article covering the change.
Source files should be conservative with the standard they expect from the developer, and parsers should be liberal in what they expect from the source, ie. allow deviations from the standard.
Python for example supposedly only allows 4 spaces for indentation, but as long as the developer is consistent most if not all Python interpreters will accept any kind of indentation.
Python for example supposedly only allows 4 spaces for indentation, but as long as the developer is consistent most if not all Python interpreters will accept any kind of indentation.
That’s a recipe for disaster as your syntax is under-specced. You’re right-up inviting programmers to produce programs with implementation-defined semantics.
Haskell (which also uses layout syntax) never had that problem as tabs were simply defined to be eight spaces, but that then led to issues with people setting different tab-widths in their editors and a flurry of syntax errors when they did “tabs for indentation, spaces for alignment”. Which is why Haskell then moved ahead to outlaw tabs, I think it’s still in the “throw a warning” phase but at some point it’s going to be a hard error.
That’s not to say that kconfig should do the same – presumably they used tabs for a good reason, and all those other programs are simply not following the spec. Essentially including unit tests in the actual production files is a good move when you’re dealing with that kind of situation.
Eight space indentation should be crime, I’m not made out screen width over here.
If you want to be strict with indentation, use tabs as your standard instead of forcing others to use your preferred visual width.
Eight is still the default tab width and will be as long as VT100 continues to be a thing, i.e. forever. Haskell could’ve chosen another static value but that would have caused even more trouble.
With Haskell’s syntax you really want to align at single-space resolution, not necessarily just on the left but also further to the right, within the lines. The gold standard is pretty much lhs2tex “poly” style (section 8, page 19), and not just because it allows lhs2tex to spit out beautiful code, it’s also highly readable in ASCII form. In that style 2+ spaces mean “align this with the 2+ space stuff above and below”.
So there’s no way around spaces and as tabs+spaces are a bad idea tabs get the boot. That argument is specific to Haskell but in general I’d argue that tabs are more trouble than they’re worth – if you have trouble editing space-only indentation, get a proper editor. If I want my Rust indented by a different amount I can just tell rustfmt to change everything, no biggie.
Having a language dependent on indentation is absurd on the face of it. It’s a ridiculous idea that should have been ridiculed from the outset.
No. Having a language depend on semicolons even though there’s ways to do without, ways that don’t even include layout if you don’t want to, is well not absurd on the face of it it’s hysterical raisins.
Haskell has one of the most admired syntaxes out there, and it’s layout. It’s clean, predictable, very simple and most of all intuitive rules. It makes sure that semantic structure always follows visual structure, thus provides a single source of truth why Algol-likes (i.e. everything that looks at least vaguely like C) have two.
I don’t indent my Rust, I let rustfmt do that. All that automation and I still get into lots of missing or mismatched braces situations which literally never happen in Haskell because the structure of the program is visually obvious, you don’t have to look for tiny squiggles to figure out what it is.
WE DO NOT BREAK USERSPACE
Invalid, not an ABI change. Besides, this does not break, it only reveals existing breakage.

what a mad lad!
I am no kernel or parsing expert here but how hard would it be to convert tabs to spaces? Is it like very finicky and is weirdly platform dependent that it wouldn’t just be one of the first things that you do if you are writing a parser for anything?
grep -oP ' *'oops no tabscut -d ' ' -f 3oops no tabs
Tabs are a dark pattern confirmed.
The war is over, long live spaces.














