The language-lawyer tag is a(nother) C++ peculiarity which users of other languages will most likely not understand, but which is quite important and known in the C++ community.
C++ isn't so much designed and specified (which is one of the reasons why "language-specifications" doesn't cut it), as it is grown — or, rather: exuberantly mushroomed. Remember, we're talking the language which enabled one of its most notorious features, template meta-programming, by accident. The latest edition of the C++ standard has ~1.3k pages (the one before that, BTW, had "only" 700 pages), plus it includes the C standard by reference.
That makes for a lot of room for language lawyers, which made this term a rather well-known one. I probably first encountered the term in comp.lang.c++.moderated about 10-15 years ago.
In C++, a language-lawyering question would be one that discusses some peculiarity of C++ which 80% of the users of the language either (hopefully) never run into, or, if they happen to run into it, then they don't realize that they've run into even if they had read that question just yesterday, or, if they realize it, they would ask a question that ought to be answered by "just don't do this".
Language-lawyering mostly involves pedantic wankery and throwing standard references at each other, but, occasionally, something useful comes out of it.1
On Stackoverflow.com, if you have a C++ question that asks for a language lawyer, you usually hope Johannes sees it. If SO failed me on such a question, I'd ask on comp.lang.c++.moderated, where all the luminaries read and, sometimes, post.
1 Erwin Unruh told me once he always meant to prove templates are a Turing-complete compile-time language. He never got around doing so before it was proven by (his own!) example through the emerging template meta-programming. But had he proved it, this would have been useful language-lawyering.